소스 검색

Change CMake commands to lowercase

Former-commit-id: a2a716985968ea66752882ac33452da0e4766158
Stefan Reinhold 7 년 전
부모
커밋
90ed035285
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  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 ###