mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-24 02:42:55 +00:00
19 lines
488 B
CMake
19 lines
488 B
CMake
# add_definitions()
|
|
set(EXTRA_NORMALIZE_LIBS KtCore)
|
|
|
|
include_directories(
|
|
${CMAKE_BINARY_DIR}/include
|
|
${CMAKE_BINARY_DIR}/privateinclude
|
|
${CMAKE_BINARY_DIR}/include/QtCore
|
|
${CMAKE_BINARY_DIR}/privateinclude/QtCore
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
)
|
|
|
|
set(NORMALIZE_SOURCES
|
|
${CMAKE_CURRENT_SOURCE_DIR}/main.cpp
|
|
)
|
|
|
|
katie_setup_target(normalize ${NORMALIZE_SOURCES})
|
|
|
|
add_executable(normalize ${normalize_SOURCES})
|
|
target_link_libraries(normalize ${EXTRA_NORMALIZE_LIBS})
|