diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-04-16 09:44:09 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-04-16 09:44:09 +0200 |
commit | c8e52cf46a6f64dbbccbce2b705ab6bbed8905ae (patch) | |
tree | b1b54ce532d2e61e1f26de8f1b05bad41313f56c /ecmake/examples | |
parent | be86ef338359ae09a38e8b87694350ef6ac84ff8 (diff) | |
download | skeletons-c8e52cf46a6f64dbbccbce2b705ab6bbed8905ae.zip skeletons-c8e52cf46a6f64dbbccbce2b705ab6bbed8905ae.tar.gz |
ecmake -> cmake-e
Diffstat (limited to 'ecmake/examples')
-rw-r--r-- | ecmake/examples/hello/CMakeLists.txt | 20 | ||||
-rw-r--r-- | ecmake/examples/hello/main.c | 10 |
2 files changed, 0 insertions, 30 deletions
diff --git a/ecmake/examples/hello/CMakeLists.txt b/ecmake/examples/hello/CMakeLists.txt deleted file mode 100644 index caae503..0000000 --- a/ecmake/examples/hello/CMakeLists.txt +++ /dev/null @@ -1,20 +0,0 @@ -LIST(APPEND HELLO_WORLD_CC_SOURCES - main.c - ) - -include_directories( - ${ELEMENTARY_INCLUDE_DIRS} - ${CMAKE_SOURCE_DIR}/lib - ) - -add_executable(hello_world ${HELLO_WORLD_CC_SOURCES}) - -get_target_property(ecmake_LIB_FILE ecmake LOCATION) -target_link_libraries(hello_world - ${ELEMENTARY_LIBRARIES} - ${ecmake_LIB_FILE} - ) - -add_dependencies(hello_world ecmake) - -add_test(Example_hello_world hello_world) diff --git a/ecmake/examples/hello/main.c b/ecmake/examples/hello/main.c deleted file mode 100644 index 7f4a907..0000000 --- a/ecmake/examples/hello/main.c +++ /dev/null @@ -1,10 +0,0 @@ -#include <Elementary.h> -#include "ecmake.h" - -EAPI_MAIN int -elm_main(int argc, char **argv) -{ - return hello_world(); -} - -ELM_MAIN() |