mirror of https://github.com/CGAL/cgal
28 lines
680 B
CMake
28 lines
680 B
CMake
# This is the CMake script for compiling a CGAL application.
|
|
|
|
cmake_minimum_required(VERSION 3.1...3.23)
|
|
project(GraphicsView_Demo)
|
|
|
|
find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6)
|
|
|
|
find_package(Qt6 QUIET COMPONENTS Widgets)
|
|
|
|
if(CGAL_Qt6_FOUND AND Qt6_FOUND)
|
|
|
|
add_definitions(-DQT_NO_KEYWORDS)
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
|
|
qt_add_executable(min min.cpp)
|
|
|
|
add_to_cached_list(CGAL_EXECUTABLE_TARGETS min)
|
|
|
|
target_link_libraries(min PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 Qt6::Widgets)
|
|
|
|
include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake)
|
|
cgal_add_compilation_test(min)
|
|
else()
|
|
|
|
message("NOTICE: This demo requires CGAL and Qt6, and will not be compiled.")
|
|
|
|
endif()
|