Files
sqlitebrowser/libs/qcustomplot-source/CMakeLists.txt
Iulian Onofrei 961141ec36 Replace deprecated qt5_use_modules function (#1419)
* Replace deprecated qt5_use_modules function

* Fix includes that fall under a larger module

* Bump minimum Cmake version to use newer features and properly use libs

* Replace deprecated qt5_use_modules function and bump minimum CMake version to 3.1.0 for 3rd party libraries
2018-07-10 20:57:55 +02:00

22 lines
410 B
CMake

cmake_minimum_required(VERSION 3.1.0)
set(CMAKE_AUTOMOC ON)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
find_package(Qt5 REQUIRED COMPONENTS Widgets PrintSupport)
set(QCUSTOMPLOT_SRC
qcustomplot.cpp
)
set(QCUSTOMPLOT_HDR
)
set(QCUSTOMPLOT_MOC_HDR
qcustomplot.h
)
add_library(qcustomplot ${QCUSTOMPLOT_SRC} ${QCUSTOMPLOT_HDR} ${QCUSTOMPLOT_MOC})
target_link_libraries(qcustomplot Qt5::Widgets Qt5::PrintSupport)