mirror of https://github.com/CGAL/cgal
36 lines
1.2 KiB
CMake
36 lines
1.2 KiB
CMake
cmake_minimum_required(VERSION 3.1...3.23)
|
|
project(Three_examples)
|
|
|
|
if(NOT POLICY CMP0070 AND POLICY CMP0053)
|
|
# Only set CMP0053 to OLD with CMake<3.10, otherwise there is a warning.
|
|
cmake_policy(SET CMP0053 OLD)
|
|
endif()
|
|
# Find includes in corresponding build directories
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
# Instruct CMake to run moc automatically when needed.
|
|
set(CMAKE_AUTOMOC ON)
|
|
#Find CGAL
|
|
find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6 ImageIO)
|
|
# Find Qt6 itself
|
|
find_package(Qt6 QUIET
|
|
COMPONENTS OpenGLWidgets Svg
|
|
OPTIONAL_COMPONENTS WebSockets)
|
|
|
|
if(RUNNING_CGAL_AUTO_TEST OR CGAL_TEST_SUITE)
|
|
if(Qt6_FOUND)
|
|
include(${CGAL_USE_FILE})
|
|
endif()
|
|
polyhedron_demo_plugin(example_plugin Example_plugin)
|
|
|
|
qt6_wrap_ui(basicUI_FILES Basic_dialog.ui)
|
|
polyhedron_demo_plugin(basic_plugin Basic_plugin ${basicUI_FILES})
|
|
|
|
qt6_wrap_ui(dockUI_FILES Basic_dock_widget.ui)
|
|
polyhedron_demo_plugin(dock_widget_plugin Dock_widget_plugin ${dockUI_FILES})
|
|
|
|
polyhedron_demo_plugin(basic_item_plugin Basic_item_plugin)
|
|
|
|
# links the library containing the scene_plane_item with the plugin
|
|
target_link_libraries(basic_item_plugin PUBLIC scene_basic_objects)
|
|
endif()
|