star-geometry-3d

Clean and decorate 3D geometries
git clone git://git.meso-star.fr/star-geometry-3d.git
Log | Files | Refs | README | LICENSE

commit 625e076e7922b7b2ccfb61be1e3353ffed157588
parent 2c2f89cbf98f4490fa74dfaa2555585238022a46
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date:   Fri, 24 Jan 2020 16:59:44 +0100

Spacing

Diffstat:
Mcmake/CMakeLists.txt | 14++++++++------
1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt @@ -24,11 +24,13 @@ option(NO_TEST "Do not build tests" OFF) -CMAKE_DEPENDENT_OPTION(SMALL_ADDITIONAL_TESTS - "Build small additional tests originally written for star-enclosures" OFF "NOT NO_TEST" OFF) +cmake_dependent_option(SMALL_ADDITIONAL_TESTS + "Build small additional tests originally written for star-enclosures" OFF + "NOT NO_TEST" OFF) -CMAKE_DEPENDENT_OPTION(HUGE_ADDITIONAL_TESTS - "Build additional tests originally written for star-enclosures that involve millions of triangles" OFF "NOT NO_TEST" OFF) +cmake_dependent_option(HUGE_ADDITIONAL_TESTS + "Build additional tests originally written for star-enclosures that involve millions of triangles" OFF + "NOT NO_TEST" OFF) ################################################################################ # Check dependencies @@ -115,8 +117,8 @@ rcmake_setup_devel(sg3 StarGeom ${VERSION} star/sg3_version.h) if(NOT NO_TEST) function(build_test _name) add_executable(${_name} - ${STAR_GEOM_SOURCE_DIR}/${_name}.c - ${STAR_GEOM_SOURCE_DIR}/test_sg3_utils.h) + ${STAR_GEOM_SOURCE_DIR}/${_name}.c + ${STAR_GEOM_SOURCE_DIR}/test_sg3_utils.h) foreach(other ${ARGN}) target_sources(${_name} PUBLIC ${STAR_GEOM_SOURCE_DIR}/${other})