The file created on the fly should do it

This commit is contained in:
Andreas Fabri 2008-10-14 06:33:58 +00:00
parent 50cc203fac
commit 0839776745
2 changed files with 0 additions and 23 deletions

1
.gitattributes vendored
View File

@ -1329,7 +1329,6 @@ Convex_hull_2/doc_tex/Convex_hull_2/convex_hull.png -text
Convex_hull_2/doc_tex/Convex_hull_2/saarhull.eps -text svneol=unset#application/postscript
Convex_hull_2/doc_tex/Convex_hull_2/saarhull.gif -text svneol=unset#image/gif
Convex_hull_2/doc_tex/Convex_hull_2/saarhull.pdf -text svneol=unset#application/pdf
Convex_hull_2/test/Convex_hull_2/CMakeLists.txt -text
Convex_hull_3/doc_tex/Convex_hull_3/bunny.png -text
Convex_hull_3/doc_tex/Convex_hull_3/bunny.wrl.gz -text
Core/src/CGALCore/Core_71.vcproj -text

View File

@ -1,22 +0,0 @@
# Created by the script cgal_create_cmake_script
# This is the CMake script for compiling a CGAL application.
project (Convex_hull_2_Test)
set(CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS true)
find_package(CGAL)
if ( CGAL_FOUND )
include(${CGAL_USE_FILE})
include(CreateSingleSourceCGALProgram)
include_directories (BEFORE include)
create_single_source_cgal_program( ch_test_CH.cpp )
create_single_source_cgal_program( ch_test_SC.cpp )
create_single_source_cgal_program( ch_test_SH.cpp )
create_single_source_cgal_program( ch_test_SS.cpp )
endif()