mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
The project cafUserInterface requires the library QtSvg because of the use of QSvgRenderer in cafUiIconFactory.cpp. The library has to be linked into the final executable. The target introdicing the dependency should also be the one specifying it. This allows us to remove the dependency from targets that doesn't directly use QtSvg at all. Closes #10955
58 lines
1.4 KiB
CMake
58 lines
1.4 KiB
CMake
cmake_minimum_required(VERSION 3.15)
|
|
|
|
project(cafTestCvfApplication)
|
|
|
|
# Qt MOC
|
|
set(MOC_HEADER_FILES MainWindow.h WidgetLayoutTest.h)
|
|
|
|
# Resource file
|
|
set(QRC_FILES textedit.qrc)
|
|
|
|
find_package(
|
|
Qt5
|
|
COMPONENTS
|
|
REQUIRED Core Gui Widgets OpenGL
|
|
)
|
|
set(QT_LIBRARIES Qt5::Core Qt5::Gui Qt5::Widgets Qt5::OpenGL)
|
|
qt5_wrap_cpp(MOC_SOURCE_FILES ${MOC_HEADER_FILES})
|
|
qt5_add_resources(QRC_FILES_CPP ${QRC_FILES})
|
|
|
|
option(USE_COMMAND_FRAMEWORK "Use Caf Command Framework" ON)
|
|
|
|
if(USE_COMMAND_FRAMEWORK)
|
|
add_definitions(-DTAP_USE_COMMAND_FRAMEWORK)
|
|
endif(USE_COMMAND_FRAMEWORK)
|
|
|
|
include_directories(
|
|
${cafPdmCore_SOURCE_DIR} ${cafPdmUiCore_SOURCE_DIR} ${cafPdmXml_SOURCE_DIR}
|
|
${cafPdmCvf_SOURCE_DIR}
|
|
)
|
|
|
|
set(PROJECT_FILES Main.cpp MainWindow.cpp WidgetLayoutTest.cpp
|
|
TapCvfSpecialization.cpp TapProject.cpp
|
|
)
|
|
|
|
# add the executable
|
|
add_executable(
|
|
${PROJECT_NAME} ${PROJECT_FILES} ${MOC_SOURCE_FILES} ${QRC_FILES_CPP}
|
|
)
|
|
|
|
set(TAP_LINK_LIBRARIES cafUserInterface cafPdmXml cafPdmCvf ${QT_LIBRARIES})
|
|
|
|
if(USE_COMMAND_FRAMEWORK)
|
|
set(TAP_LINK_LIBRARIES ${TAP_LINK_LIBRARIES} cafCommand)
|
|
endif(USE_COMMAND_FRAMEWORK)
|
|
|
|
target_link_libraries(${PROJECT_NAME} ${TAP_LINK_LIBRARIES})
|
|
|
|
source_group("" FILES ${PROJECT_FILES})
|
|
|
|
foreach(qtlib ${QT_LIBRARIES})
|
|
add_custom_command(
|
|
TARGET ${PROJECT_NAME}
|
|
POST_BUILD
|
|
COMMAND ${CMAKE_COMMAND} -E copy_if_different $<TARGET_FILE:${qtlib}>
|
|
$<TARGET_FILE_DIR:${PROJECT_NAME}>
|
|
)
|
|
endforeach(qtlib)
|