2015-12-24 03:53:53 +02:00
|
|
|
# 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
|
|
|
|
)
|
|
|
|
|
2016-08-25 04:38:45 +00:00
|
|
|
katie_setup_target(plugintest ${PLUGINTEST_SOURCES})
|
2016-08-24 17:14:01 +00:00
|
|
|
|
2016-10-24 16:24:30 +00:00
|
|
|
add_executable(plugintest ${plugintest_SOURCES})
|
2016-08-25 04:38:45 +00:00
|
|
|
target_link_libraries(plugintest ${EXTRA_PLUGINTEST_LIBS})
|