mirror of https://github.com/CGAL/cgal
Fix for the testsuite
In the testsuite, `test/Kernel_23/include` can be found as `../Kernel_23/include`, whereas in the Git layout it is `../../../Kernel_23/test/Kernel_23/include`.
This commit is contained in:
parent
12732c3d5b
commit
c3b8d2c46f
|
|
@ -11,8 +11,14 @@ find_package(CGAL QUIET)
|
|||
if ( CGAL_FOUND )
|
||||
|
||||
include_directories (BEFORE include)
|
||||
|
||||
# The following `include_directories` is used in the git layout
|
||||
include_directories (BEFORE ../../../Kernel_23/test/Kernel_23/include)
|
||||
|
||||
# The following `include_directories` is used in the layout of the
|
||||
# internal releases tarballs
|
||||
include_directories (BEFORE ../Kernel_23/include)
|
||||
|
||||
create_single_source_cgal_program( "test_Circular_kernel.cpp" )
|
||||
create_single_source_cgal_program( "test_Lazy_circular_kernel.cpp" )
|
||||
create_single_source_cgal_program( "test_Exact_circular_kernel.cpp" )
|
||||
|
|
|
|||
|
|
@ -13,8 +13,14 @@ if ( CGAL_FOUND )
|
|||
include(${CGAL_USE_FILE})
|
||||
|
||||
include_directories (BEFORE include)
|
||||
|
||||
# The following `include_directories` is used in the git layout
|
||||
include_directories (BEFORE ../../../Kernel_23/test/Kernel_23/include)
|
||||
|
||||
# The following `include_directories` is used in the layout of the
|
||||
# internal releases tarballs
|
||||
include_directories (BEFORE ../Kernel_23/include)
|
||||
|
||||
create_single_source_cgal_program( "test_Spherical_kernel.cpp" )
|
||||
create_single_source_cgal_program( "test_Spherical_kernel_basics.cpp" )
|
||||
create_single_source_cgal_program( "test_Exact_spherical_kernel.cpp" )
|
||||
|
|
|
|||
Loading…
Reference in New Issue