diff options
-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 |