From fe139a8a7a7b41c95b7594a12b0860d0749160f6 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Tue, 21 Nov 2017 09:51:55 +0100 Subject: [PATCH] Fix a typo --- Installation/cmake/modules/CGAL_SetupLEDA.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Installation/cmake/modules/CGAL_SetupLEDA.cmake b/Installation/cmake/modules/CGAL_SetupLEDA.cmake index 3097651c2c9..fb7a2f6c721 100644 --- a/Installation/cmake/modules/CGAL_SetupLEDA.cmake +++ b/Installation/cmake/modules/CGAL_SetupLEDA.cmake @@ -41,7 +41,7 @@ function(use_CGAL_LEDA_support target) message(FATAL_ERROR "use_CGAL_LEDA_support is use whereas LEDA_FOUND is false.") return() endif() - target_compiles_options(${target} ${keyword} ${LEDA_CXX_FLAGS} ${LEDA_DEFINITIONS}) + target_compile_options(${target} ${keyword} ${LEDA_CXX_FLAGS} ${LEDA_DEFINITIONS}) target_include_directories(${target} SYSTEM ${keyword} ${LEDA_INCLUDE_DIR}) target_link_libraries(${target} ${keyword} ${LEDA_LIBRARIES} ${LEDA_LINKER_FLAGS}) endfunction()