mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-24 19:02:59 +00:00
20 lines
519 B
CMake
20 lines
519 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_BINARY_DIR}/privateinclude/QtCore
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
)
|
|
|
|
set(PLUGINTEST_SOURCES
|
|
${CMAKE_CURRENT_SOURCE_DIR}/main.cpp
|
|
)
|
|
|
|
katie_resources(${PLUGINTEST_SOURCES})
|
|
katie_setup_flags()
|
|
|
|
add_executable(plugintest EXCLUDE_FROM_ALL ${PLUGINTEST_SOURCES})
|
|
target_link_libraries(plugintest ${EXTRA_PLUGINTEST_LIBS})
|