mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2024-11-15 18:15:52 +08:00
52d3349199
- removed more global settings (these are now target-specific) - exporting now Config.cmake, which contains find_package(Qt) and loads a separate Targets.cmake
10 lines
181 B
CMake
10 lines
181 B
CMake
cmake_minimum_required(VERSION 3.1)
|
|
|
|
# configure compiler
|
|
set(CMAKE_CXX_STANDARD 11)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED on)
|
|
|
|
if(NOT APPLE)
|
|
set(CMAKE_INSTALL_RPATH $ORIGIN)
|
|
endif()
|