That is a followup-to my commit last year:
| ------------------------------------------------------------------------
| r63198 | lrineau | 2011-04-28 19:45:22 +0200 (Thu, 28 Apr 2011) | 5 lines
|
| Try to fix my last revision about cmake_policy, with CMake-2.6.x
|
| CMake gives an error if one tries to use cmake_policy(VERSION x.y.z) if
| x.y.z is greater than the current CMake version.
|
| ------------------------------------------------------------------------
The following check:
if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" VERSION_GREATER 2.6)
is useless just after a call to:
cmake_minimum_required(VERSION 2.6.2)
The script used to fix that was:
#!/usr/bin/env perl
$replacement=<<'END';
if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}.${CMAKE_PATCH_VERSION}" VERSION_GREATER 2.8.3)
cmake_policy(VERSION 2.8.4)
else()
cmake_policy(VERSION 2.6)
endif()
END
while(<>) {
if(/if\("\${CMAKE_MAJOR_VERSION}.\${CMAKE_MINOR_VERSION}" VERSION_GREATER 2.6\)/) {
while(<>) {
if(/^endif\(\)/) {
print "$replacement";
while(<>) {
print;
}
exit 0
}
}
}
print;
}
58 lines
1.6 KiB
CMake
58 lines
1.6 KiB
CMake
# Created by the script cgal_create_cmake_script
|
|
# This is the CMake script for compiling a CGAL application.
|
|
|
|
project (Circular_kernel_2)
|
|
|
|
cmake_minimum_required(VERSION 2.6.2)
|
|
if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}.${CMAKE_PATCH_VERSION}" VERSION_GREATER 2.8.3)
|
|
cmake_policy(VERSION 2.8.4)
|
|
else()
|
|
cmake_policy(VERSION 2.6)
|
|
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)
|
|
|
|
include_directories (BEFORE ../../include)
|
|
|
|
if ( CGAL_FOUND AND CGAL_Qt4_FOUND AND QT4_FOUND )
|
|
|
|
include(${QT_USE_FILE})
|
|
|
|
#--------------------------------
|
|
# The demo: Circular_kernel_2
|
|
#--------------------------------
|
|
# UI files (Qt Designer files)
|
|
qt4_wrap_ui( DT_UI_FILES Circular_kernel_2.ui )
|
|
|
|
# qrc files (resources files, that contain icons, at least)
|
|
qt4_add_resources ( DT_RESOURCE_FILES ./Circular_kernel_2.qrc )
|
|
|
|
# use the Qt MOC preprocessor on classes that derives from QObject
|
|
qt4_generate_moc( "Circular_kernel_2.cpp" "${CMAKE_CURRENT_BINARY_DIR}/Circular_kernel_2.moc" )
|
|
|
|
# The executable itself.
|
|
add_executable ( Circular_kernel_2 Circular_kernel_2.cpp Circular_kernel_2.moc ${DT_UI_FILES} ${DT_RESOURCE_FILES} )
|
|
|
|
add_to_cached_list( CGAL_EXECUTABLE_TARGETS Circular_kernel_2 )
|
|
|
|
# Link with Qt libraries
|
|
target_link_libraries( Circular_kernel_2 ${QT_LIBRARIES} )
|
|
# Link with CGAL
|
|
target_link_libraries( Circular_kernel_2 ${CGAL_LIBRARIES} ${CGAL_3RD_PARTY_LIBRARIES})
|
|
|
|
else()
|
|
|
|
message(STATUS "NOTICE: This demo requires CGAL and Qt4, and will not be compiled.")
|
|
|
|
endif()
|