Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CMake - Add one CMakeLists per package #8265

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions Mesh_3/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# This is the CMake script for compiling this folder.

lrineau marked this conversation as resolved.
Show resolved Hide resolved
cmake_minimum_required(VERSION 3.1...3.23)
project(Mesh_3)

if(CGAL_ENABLE_TESTING)
enable_testing()
endif()

lrineau marked this conversation as resolved.
Show resolved Hide resolved
option(CGAL_MESH_3_BENCHMARK "Add benchmark to project" OFF)
if(CGAL_MESH_3_BENCHMARK)
add_subdirectory("benchmark/Mesh_3")
endif()

add_subdirectory("examples/Mesh_3")
add_subdirectory("test/Mesh_3")
lrineau marked this conversation as resolved.
Show resolved Hide resolved
11 changes: 11 additions & 0 deletions Poisson_surface_reconstruction_3/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# This is the CMake script for compiling this folder.

cmake_minimum_required(VERSION 3.1...3.23)
project(Poisson_surface_reconstruction_3)

if(CGAL_ENABLE_TESTING)
enable_testing()
endif()

add_subdirectory("examples/Poisson_surface_reconstruction_3")
add_subdirectory("test/Poisson_surface_reconstruction_3")
lrineau marked this conversation as resolved.
Show resolved Hide resolved