Fix project names

This commit is contained in:
Simon Giraudot 2021-01-19 10:27:22 +01:00
parent 2cb6f51cd0
commit 11aa2c24f5
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
# This is the CMake script for compiling a CGAL application. # This is the CMake script for compiling a CGAL application.
cmake_minimum_required(VERSION 3.1...3.14) cmake_minimum_required(VERSION 3.1...3.14)
project(Octree_Examples) project(Orthtree_Examples)
find_package(CGAL REQUIRED QUIET OPTIONAL_COMPONENTS Core) find_package(CGAL REQUIRED QUIET OPTIONAL_COMPONENTS Core)
if (CGAL_FOUND) if (CGAL_FOUND)

View File

@ -2,7 +2,7 @@
# This is the CMake script for compiling a CGAL application. # This is the CMake script for compiling a CGAL application.
cmake_minimum_required(VERSION 3.1...3.14) cmake_minimum_required(VERSION 3.1...3.14)
project(Octree_Tests) project(Orthtree_Tests)
# TODO: I shouldn't leave this here # TODO: I shouldn't leave this here
set(CMAKE_CXX_STANDARD 14) set(CMAKE_CXX_STANDARD 14)