mirror of https://github.com/CGAL/cgal
44 lines
881 B
CMake
44 lines
881 B
CMake
# This is the CMake script for compiling a CGAL application.
|
|
|
|
project (GraphicsView)
|
|
|
|
cmake_minimum_required(VERSION 2.4)
|
|
|
|
set(CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS true)
|
|
|
|
if ( COMMAND cmake_policy )
|
|
cmake_policy( SET CMP0003 NEW )
|
|
endif()
|
|
|
|
find_package(CGAL COMPONENTS Qt4)
|
|
|
|
include(${CGAL_USE_FILE})
|
|
|
|
|
|
set( QT_USE_QTXML TRUE )
|
|
set( QT_USE_QTMAIN TRUE )
|
|
set( QT_USE_QTSCRIPT TRUE )
|
|
set( QT_USE_QTOPENGL TRUE )
|
|
|
|
find_package(Qt4)
|
|
|
|
if ( CGAL_FOUND AND CGAL_Qt4_FOUND AND QT4_FOUND )
|
|
|
|
include(${QT_USE_FILE})
|
|
|
|
|
|
add_executable ( min min.cpp )
|
|
|
|
add_to_cached_list( CGAL_EXECUTABLE_TARGETS min )
|
|
|
|
# Link with Qt libraries
|
|
target_link_libraries( min ${QT_LIBRARIES} )
|
|
# Link with CGAL
|
|
target_link_libraries( min ${CGAL_LIBRARIES} ${CGAL_3RD_PARTY_LIBRARIES})
|
|
|
|
else()
|
|
|
|
message(STATUS "NOTICE: This demo requires CGAL and Qt4, and will not be compiled.")
|
|
|
|
endif()
|