https://github.com/d-led/premake_experiments
https://github.com/d-led/premake_experiments
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/d-led/premake_experiments
- Owner: d-led
- License: unlicense
- Created: 2019-03-01T10:08:14.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-01T11:54:23.000Z (over 7 years ago)
- Last Synced: 2025-06-22T06:38:35.390Z (12 months ago)
- Language: Makefile
- Homepage:
- Size: 1.47 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# premake_experiments
[](https://travis-ci.org/d-led/premake_experiments)
## Experiments
- post-build action sequence
- cross-platform copying of resource files
- generic test scripts
```txt
$ ./test.sh
origin is /home/travis/build/d-led/premake_experiments
os is: linux
source root is: /home/travis/build/d-led/premake_experiments
Building configurations...
Running action 'gmake'...
Done (17ms).
now in /home/travis/build/d-led/premake_experiments
make: Entering directory '/home/travis/build/d-led/premake_experiments/build/linux/gmake'
Cleaning test
make: Leaving directory '/home/travis/build/d-led/premake_experiments/build/linux/gmake'
make: Entering directory '/home/travis/build/d-led/premake_experiments/build/linux/gmake'
==== Building test (debug) ====
Creating ../../../obj/linux/test/Debug
test.cpp
Creating ../../../bin/linux/test/Debug
Linking test
Copying the resource file to the target dir
cp -rf ../../../res/linux/data.txt ../../../bin/linux/test/Debug
../../../bin/linux/test/Debug/test
starting ../../../bin/linux/test/Debug/test
data: this is linux
```