mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-26 20:03:13 +00:00
28 lines
949 B
CMake
28 lines
949 B
CMake
set(SHAREDHELP_DEFINITIONS)
|
|
|
|
set(SHAREDHELP_INCLUDES
|
|
${CMAKE_BINARY_DIR}/include
|
|
${CMAKE_BINARY_DIR}/privateinclude
|
|
${CMAKE_BINARY_DIR}/include/QtCore
|
|
${CMAKE_BINARY_DIR}/privateinclude/QtCore
|
|
${CMAKE_BINARY_DIR}/include/QtHelp
|
|
${CMAKE_BINARY_DIR}/privateinclude/QtHelp
|
|
${CMAKE_SOURCE_DIR}/src/shared/help
|
|
${CMAKE_BINARY_DIR}/src/shared/help
|
|
)
|
|
|
|
set(SHAREDHELP_SOURCES
|
|
${CMAKE_SOURCE_DIR}/src/shared/help/collectionconfiguration.cpp
|
|
${CMAKE_SOURCE_DIR}/src/shared/help/helpgenerator.cpp
|
|
)
|
|
|
|
set(SHAREDHELP_HEADERS
|
|
${CMAKE_SOURCE_DIR}/src/shared/help/collectionconfiguration.h
|
|
${CMAKE_SOURCE_DIR}/src/shared/help/helpgenerator.h
|
|
)
|
|
|
|
katie_setup_target(sharedhelp ${SHAREDHELP_SOURCES} ${SHAREDHELP_HEADERS})
|
|
|
|
add_library(sharedhelp OBJECT ${sharedhelp_SOURCES})
|
|
target_compile_definitions(sharedhelp PRIVATE ${SHAREDHELP_DEFINITIONS})
|
|
target_include_directories(sharedhelp PRIVATE ${SHAREDHELP_INCLUDES})
|