diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-04-16 09:43:33 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-04-16 09:43:33 +0200 |
commit | be86ef338359ae09a38e8b87694350ef6ac84ff8 (patch) | |
tree | d7dba829d1e4d6a3db37220647da84d6d18c4913 | |
parent | 6f682d7d94a30433531137476cd4aaa4dd200f3b (diff) | |
download | skeletons-be86ef338359ae09a38e8b87694350ef6ac84ff8.zip skeletons-be86ef338359ae09a38e8b87694350ef6ac84ff8.tar.gz |
ecmake: add test, comment tests subdirectory
-rw-r--r-- | ecmake/CMakeLists.txt | 2 | ||||
-rwxr-xr-x | ecmake/test | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/ecmake/CMakeLists.txt b/ecmake/CMakeLists.txt index 4d88f9c..103665b 100644 --- a/ecmake/CMakeLists.txt +++ b/ecmake/CMakeLists.txt @@ -41,5 +41,5 @@ include(EFLCheck) add_subdirectory(lib) add_subdirectory(examples/hello) -add_subdirectory(tests EXCLUDE_FROM_ALL) +#add_subdirectory(tests EXCLUDE_FROM_ALL) diff --git a/ecmake/test b/ecmake/test new file mode 100755 index 0000000..8a1f698 --- /dev/null +++ b/ecmake/test @@ -0,0 +1,3 @@ +#! /bin/bash +[ -e build ] && rm -fr build +mkdir build && cd build && cmake .. && make && examples/hello/hello_world |