Sfoglia il codice sorgente

Change CMake commands to lowercase

Former-commit-id: a2a716985968ea66752882ac33452da0e4766158
Stefan Reinhold 7 anni fa
parent
commit
90ed035285
1 ha cambiato i file con 3 aggiunte e 3 eliminazioni
  1. 3 3
      shared/cmake/libigl.cmake

+ 3 - 3
shared/cmake/libigl.cmake

@@ -80,8 +80,8 @@ target_include_directories(igl_common SYSTEM INTERFACE
 if(LIBIGL_USE_STATIC_LIBRARY)
   target_compile_definitions(igl_common INTERFACE -DIGL_STATIC_LIBRARY)
 endif()
-LIST(APPEND ALL_MODULES igl_common)
-LIST(APPEND INSTALL_HEADERS igl)
+list(APPEND ALL_MODULES igl_common)
+list(APPEND INSTALL_HEADERS igl)
 
 # Transitive C++11 flags
 include(CXXFeatures)
@@ -165,7 +165,7 @@ if(LIBIGL_USE_STATIC_LIBRARY)
     "${LIBIGL_SOURCE_DIR}/igl/copyleft/*.cpp")
 endif()
 compile_igl_module("core" ${SOURCES_IGL})
-LIST(APPEND ALL_MODULES igl)
+list(APPEND ALL_MODULES igl)
 
 ################################################################################
 ## Compile the AntTweakBar part ###