diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-05-21 16:05:55 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-05-21 16:05:55 +0200 |
commit | 5c2347eb55eb0b6d661a3efddc5e3aff93dd6c2e (patch) | |
tree | 6f61427dc5fc6879638575109d1e06ebadb60451 /tests | |
download | edoors-5c2347eb55eb0b6d661a3efddc5e3aff93dd6c2e.zip edoors-5c2347eb55eb0b6d661a3efddc5e3aff93dd6c2e.tar.gz |
initial commit: project tree and cmake scripts
Diffstat (limited to 'tests')
-rw-r--r-- | tests/CMakeLists.txt | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt new file mode 100644 index 0000000..20b3e39 --- /dev/null +++ b/tests/CMakeLists.txt @@ -0,0 +1,20 @@ +LIST(APPEND TESTS_CC_SOURCES + main.c + ) + +include_directories( + ${EINA_INCLUDE_DIRS} + ${CMAKE_SOURCE_DIR}/src/include + ) + +add_executable(tests ${TESTS_CC_SOURCES}) + +get_target_property(eiotas_LIB_FILE eiotas LOCATION) +target_link_libraries(tests + ${EINA_LIBRARIES} + ${eiotas_LIB_FILE} + ) + +add_dependencies(tests eiotas) + +add_test(Example_tests tests) |