Commit 6874cafd by Miha

cmake examples change so that general.c is off by default

parent 058956ce
......@@ -6,10 +6,14 @@ ELSE()
TARGET_LINK_LIBRARIES(cgit2 git2 pthread)
ENDIF()
OPTION( BUILD_EXAMPLES_GENERAL "Build general example" OFF )
FILE(GLOB SRC_EXAMPLE_APPS RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.c)
FOREACH(src_app ${SRC_EXAMPLE_APPS})
STRING(REPLACE ".c" "" app_name ${src_app})
IF(NOT ${app_name} STREQUAL "common")
IF(${app_name} STREQUAL "general" AND BUILD_EXAMPLES_GENERAL OR
NOT ${app_name} STREQUAL "general" AND NOT ${app_name} STREQUAL "common"
)
ADD_EXECUTABLE(${app_name} ${src_app} "common.c")
TARGET_LINK_LIBRARIES(${app_name} git2)
ENDIF()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment