mirror of https://github.com/CGAL/cgal
durty cmake fix
This commit is contained in:
parent
4b7be41b9d
commit
59f650cb81
|
|
@ -2,6 +2,8 @@ cmake_minimum_required(VERSION 3.1...3.15)
|
||||||
|
|
||||||
project( Triangulation_on_hyperbolic_surface_2_Demo )
|
project( Triangulation_on_hyperbolic_surface_2_Demo )
|
||||||
|
|
||||||
|
include_directories(/Users/pougetma/dev/cgal-loic-submission-2024/Installation/include/)
|
||||||
|
|
||||||
# Find includes in corresponding build directories
|
# Find includes in corresponding build directories
|
||||||
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
||||||
include_directories(${CMAKE_BINARY_DIR})
|
include_directories(${CMAKE_BINARY_DIR})
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,7 @@ project( Triangulation_on_hyperbolic_surface_2_Examples )
|
||||||
find_package( CGAL REQUIRED )
|
find_package( CGAL REQUIRED )
|
||||||
|
|
||||||
include_directories(../../include/)
|
include_directories(../../include/)
|
||||||
|
include_directories(/Users/pougetma/dev/cgal-loic-submission-2024/Installation/include/)
|
||||||
|
|
||||||
# create a target per cppfile
|
# create a target per cppfile
|
||||||
file(
|
file(
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@
|
||||||
// This file contains the declaration and the implementation of the class Hyperbolic_surface_traits_2
|
// This file contains the declaration and the implementation of the class Hyperbolic_surface_traits_2
|
||||||
|
|
||||||
#ifndef CGAL_HYPERBOLIC_SURFACE_TRAITS_2
|
#ifndef CGAL_HYPERBOLIC_SURFACE_TRAITS_2
|
||||||
#define CGAL_HYPERBOLIC_SURFACE_TRAITS_2_H
|
#define CGAL_HYPERBOLIC_SURFACE_TRAITS_2
|
||||||
|
|
||||||
#include <CGAL/license/Triangulation_on_hyperbolic_surface_2.h>
|
#include <CGAL/license/Triangulation_on_hyperbolic_surface_2.h>
|
||||||
|
|
||||||
|
|
@ -33,4 +33,4 @@ public:
|
||||||
|
|
||||||
} // namespace CGAL
|
} // namespace CGAL
|
||||||
|
|
||||||
#endif // CGAL_HYPERBOLIC_SURFACE_TRAITS_2_H
|
#endif // CGAL_HYPERBOLIC_SURFACE_TRAITS_2
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,7 @@ find_package(CGAL REQUIRED)
|
||||||
set(CMAKE_BUILD_TYPE "Debug")
|
set(CMAKE_BUILD_TYPE "Debug")
|
||||||
|
|
||||||
include_directories(../../include/)
|
include_directories(../../include/)
|
||||||
|
include_directories(/Users/pougetma/dev/cgal-loic-submission-2024/Installation/include/)
|
||||||
|
|
||||||
# create a target per cppfile
|
# create a target per cppfile
|
||||||
file(
|
file(
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue