mirror of
https://github.com/OPM/ResInsight.git
synced 2026-08-04 10:33:29 -05:00
* Add dependency to Svg * Renaming * Remove special handling of bright colored curves For some ensemble cases, the curve highlight does not work well. A prototype for ensemble curve highlight was introduced, but this was not working for a collection of standalone summary curves. * Set version to RC_02
36 lines
882 B
CMake
36 lines
882 B
CMake
cmake_minimum_required(VERSION 2.8.12)
|
|
|
|
project(cafUserInterface_UnitTests)
|
|
|
|
find_package(
|
|
Qt5
|
|
COMPONENTS
|
|
REQUIRED Core Gui Widgets Svg
|
|
)
|
|
set(QT_LIBRARIES Qt5::Core Qt5::Gui Qt5::Widgets Qt5::OpenGL Qt5::Svg)
|
|
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
set(PROJECT_FILES cafUserInterface_UnitTests.cpp cafPdmUiTreeViewModelTest.cpp
|
|
cafPdmUiTreeSelectionQModelTest.cpp gtest/gtest-all.cpp
|
|
)
|
|
|
|
# add the executable
|
|
add_executable(${PROJECT_NAME} ${PROJECT_FILES})
|
|
|
|
source_group("" FILES ${PROJECT_FILES})
|
|
|
|
target_link_libraries(
|
|
${PROJECT_NAME} cafUserInterface ${QT_LIBRARIES} ${THREAD_LIBRARY}
|
|
)
|
|
|
|
# Copy Qt Dlls
|
|
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)
|