mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
* Remove bundling of openssl1.1 * Remove obsolete compile flags * Remove use of obsolete RimCommandObject * Use QColor::isValidColorName QColor::isValidColor is deprecated in Qt 6.6, QColor::isValidColorName was introduced in 6.4 * Make sure debug DLLs are copied when required * Remove Qt5 from AppFwk * Remove obsolete copy of Qt DLLs
41 lines
873 B
CMake
41 lines
873 B
CMake
project(cafProjectDataModel)
|
|
|
|
# Unity Build
|
|
if(CAF_ENABLE_UNITY_BUILD)
|
|
message("Cmake Unity build is enabled on : ${PROJECT_NAME}")
|
|
set(CMAKE_UNITY_BUILD true)
|
|
endif()
|
|
|
|
find_package(
|
|
Qt6
|
|
COMPONENTS
|
|
REQUIRED Core Gui Widgets
|
|
)
|
|
set(QT_LIBRARIES Qt6::Core Qt6::Gui Qt6::Widgets)
|
|
qt_standard_project_setup()
|
|
|
|
set(PROJECT_FILES
|
|
cafFactory.h
|
|
cafOmpMutex.h
|
|
cafPdmDocument.cpp
|
|
cafPdmDocument.h
|
|
cafPdmObjectGroup.cpp
|
|
cafPdmObjectGroup.h
|
|
cafPdmObject.cpp
|
|
cafPdmObject.h
|
|
)
|
|
|
|
add_library(${PROJECT_NAME} ${PROJECT_FILES})
|
|
|
|
target_link_libraries(${PROJECT_NAME} cafPdmUiCore cafPdmXml ${QT_LIBRARIES})
|
|
|
|
target_include_directories(${PROJECT_NAME} PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
if(MSVC)
|
|
set_target_properties(
|
|
${PROJECT_NAME} PROPERTIES COMPILE_FLAGS "/W4 /wd4100 /wd4127 /wd4996"
|
|
)
|
|
endif()
|
|
|
|
source_group("" FILES ${PROJECT_FILES})
|