katie/util/plugintest/CMakeLists.txt
Ivailo Monev 13b48ebdb1 place all private headers in single directory
should reduce the build time and also the length of the commands used
during build

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2020-12-01 19:20:31 +00:00

18 lines
450 B
CMake

# add_definitions()
set(EXTRA_PLUGINTEST_LIBS KtCore)
include_directories(
${CMAKE_BINARY_DIR}/include
${CMAKE_BINARY_DIR}/privateinclude
${CMAKE_BINARY_DIR}/include/QtCore
${CMAKE_CURRENT_SOURCE_DIR}
)
set(PLUGINTEST_SOURCES
${CMAKE_CURRENT_SOURCE_DIR}/main.cpp
)
katie_setup_target(plugintest ${PLUGINTEST_SOURCES})
add_executable(plugintest ${plugintest_SOURCES})
target_link_libraries(plugintest ${EXTRA_PLUGINTEST_LIBS})