grive2/grive/CMakeLists.txt

27 lines
444 B
CMake
Raw Normal View History

project( grive )
include_directories(
${grive_SOURCE_DIR}/../libgrive/src
${OPT_INCS}
)
2012-05-06 18:40:58 +04:00
add_definitions( -DVERSION="${GRIVE_VERSION}" )
file (GLOB GRIVE_EXE_SRC
${grive_SOURCE_DIR}/src/*.cc
)
add_executable( grive_executable
${GRIVE_EXE_SRC}
)
target_link_libraries( grive_executable
grive
)
set_target_properties( grive_executable
PROPERTIES OUTPUT_NAME grive
)
install(TARGETS grive_executable RUNTIME DESTINATION bin)