mirror of https://github.com/CGAL/cgal
Updated Point_set_processing_3 's CMakeLists.txt files
This commit is contained in:
parent
17dea5f329
commit
e580938c7f
|
|
@ -1,6 +1,4 @@
|
||||||
# Created by the script cgal_create_cmake_script
|
# This is the CMake script for compiling this folder.
|
||||||
# This is the CMake script for compiling a CGAL application.
|
|
||||||
|
|
||||||
|
|
||||||
project( Point_set_processing_3_example )
|
project( Point_set_processing_3_example )
|
||||||
|
|
||||||
|
|
@ -10,7 +8,10 @@ set(CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS true)
|
||||||
|
|
||||||
if ( COMMAND cmake_policy )
|
if ( COMMAND cmake_policy )
|
||||||
cmake_policy( SET CMP0003 NEW )
|
cmake_policy( SET CMP0003 NEW )
|
||||||
endif()
|
endif(COMMAND cmake_policy)
|
||||||
|
|
||||||
|
# Include this package's headers first
|
||||||
|
include_directories (BEFORE . include ../../include)
|
||||||
|
|
||||||
# Find CGAL
|
# Find CGAL
|
||||||
find_package(CGAL QUIET COMPONENTS Core )
|
find_package(CGAL QUIET COMPONENTS Core )
|
||||||
|
|
@ -41,9 +42,6 @@ if ( CGAL_FOUND )
|
||||||
message( STATUS "USING RELEASE EXEFLAGS = '${CMAKE_EXE_LINKER_FLAGS} ${CMAKE_EXE_LINKER_FLAGS_RELEASE}'" )
|
message( STATUS "USING RELEASE EXEFLAGS = '${CMAKE_EXE_LINKER_FLAGS} ${CMAKE_EXE_LINKER_FLAGS_RELEASE}'" )
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
include_directories (BEFORE ../../include)
|
|
||||||
include_directories (BEFORE include)
|
|
||||||
|
|
||||||
# Temporary debugging stuff
|
# Temporary debugging stuff
|
||||||
#ADD_DEFINITIONS( "-DDEBUG_TRACE" )
|
#ADD_DEFINITIONS( "-DDEBUG_TRACE" )
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,4 @@
|
||||||
# Created by the script cgal_create_cmake_script
|
# This is the CMake script for compiling this folder.
|
||||||
# This is the CMake script for compiling a CGAL application.
|
|
||||||
|
|
||||||
|
|
||||||
project( Point_set_processing_3_test )
|
project( Point_set_processing_3_test )
|
||||||
|
|
||||||
|
|
@ -10,7 +8,10 @@ set(CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS true)
|
||||||
|
|
||||||
if ( COMMAND cmake_policy )
|
if ( COMMAND cmake_policy )
|
||||||
cmake_policy( SET CMP0003 NEW )
|
cmake_policy( SET CMP0003 NEW )
|
||||||
endif()
|
endif(COMMAND cmake_policy)
|
||||||
|
|
||||||
|
# Include this package's headers first
|
||||||
|
include_directories (BEFORE . include ../../include)
|
||||||
|
|
||||||
# Find CGAL
|
# Find CGAL
|
||||||
find_package(CGAL QUIET COMPONENTS Core )
|
find_package(CGAL QUIET COMPONENTS Core )
|
||||||
|
|
@ -41,9 +42,6 @@ if ( CGAL_FOUND )
|
||||||
message( STATUS "USING RELEASE EXEFLAGS = '${CMAKE_EXE_LINKER_FLAGS} ${CMAKE_EXE_LINKER_FLAGS_RELEASE}'" )
|
message( STATUS "USING RELEASE EXEFLAGS = '${CMAKE_EXE_LINKER_FLAGS} ${CMAKE_EXE_LINKER_FLAGS_RELEASE}'" )
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
include_directories (BEFORE ../../include)
|
|
||||||
include_directories (BEFORE include)
|
|
||||||
|
|
||||||
# Executables that do *not* require LAPACK
|
# Executables that do *not* require LAPACK
|
||||||
create_single_source_cgal_program( "analysis_test.cpp" )
|
create_single_source_cgal_program( "analysis_test.cpp" )
|
||||||
create_single_source_cgal_program( "remove_outliers_test.cpp" )
|
create_single_source_cgal_program( "remove_outliers_test.cpp" )
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
# This is the CMake script for compiling the Surface_reconstruction_points_3 MFC demo.
|
# This is the CMake script for compiling this folder.
|
||||||
|
|
||||||
project( Surface_reconstruction_points_3_example )
|
project( Surface_reconstruction_points_3_example )
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
# This is the CMake script for compiling Surface_reconstruction_points_3 tests.
|
# This is the CMake script for compiling this folder.
|
||||||
|
|
||||||
project( Surface_reconstruction_points_3_test )
|
project( Surface_reconstruction_points_3_test )
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue