mirror of
https://github.com/g-truc/glm.git
synced 2024-11-10 04:31:47 +00:00
CMakeLists.txt: remove libraries
glm is a heaser-only library, libraries are not needed Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
This commit is contained in:
parent
4adf2fb1fa
commit
3b798fe06b
@ -12,8 +12,6 @@ include(CMakePackageConfigHelpers)
|
|||||||
enable_testing()
|
enable_testing()
|
||||||
|
|
||||||
option(GLM_QUIET "No CMake Message" OFF)
|
option(GLM_QUIET "No CMake Message" OFF)
|
||||||
option(BUILD_SHARED_LIBS "Build shared library" ON)
|
|
||||||
option(BUILD_STATIC_LIBS "Build static library" ON)
|
|
||||||
option(GLM_TEST_ENABLE_CXX_98 "Enable C++ 98" OFF)
|
option(GLM_TEST_ENABLE_CXX_98 "Enable C++ 98" OFF)
|
||||||
option(GLM_TEST_ENABLE_CXX_11 "Enable C++ 11" OFF)
|
option(GLM_TEST_ENABLE_CXX_11 "Enable C++ 11" OFF)
|
||||||
option(GLM_TEST_ENABLE_CXX_14 "Enable C++ 14" OFF)
|
option(GLM_TEST_ENABLE_CXX_14 "Enable C++ 14" OFF)
|
||||||
@ -239,7 +237,6 @@ endif()
|
|||||||
|
|
||||||
include_directories("${PROJECT_SOURCE_DIR}")
|
include_directories("${PROJECT_SOURCE_DIR}")
|
||||||
|
|
||||||
add_subdirectory(glm)
|
|
||||||
add_subdirectory(test)
|
add_subdirectory(test)
|
||||||
|
|
||||||
set(GLM_INSTALL_CONFIGDIR "${CMAKE_INSTALL_LIBDIR}/cmake/glm")
|
set(GLM_INSTALL_CONFIGDIR "${CMAKE_INSTALL_LIBDIR}/cmake/glm")
|
||||||
|
@ -1,66 +0,0 @@
|
|||||||
file(GLOB ROOT_SOURCE *.cpp)
|
|
||||||
file(GLOB ROOT_INLINE *.inl)
|
|
||||||
file(GLOB ROOT_HEADER *.hpp)
|
|
||||||
file(GLOB ROOT_TEXT ../*.txt)
|
|
||||||
file(GLOB ROOT_MD ../*.md)
|
|
||||||
file(GLOB ROOT_NAT ../util/glm.natvis)
|
|
||||||
|
|
||||||
file(GLOB_RECURSE CORE_SOURCE ./detail/*.cpp)
|
|
||||||
file(GLOB_RECURSE CORE_INLINE ./detail/*.inl)
|
|
||||||
file(GLOB_RECURSE CORE_HEADER ./detail/*.hpp)
|
|
||||||
|
|
||||||
file(GLOB_RECURSE EXT_SOURCE ./ext/*.cpp)
|
|
||||||
file(GLOB_RECURSE EXT_INLINE ./ext/*.inl)
|
|
||||||
file(GLOB_RECURSE EXT_HEADER ./ext/*.hpp)
|
|
||||||
|
|
||||||
file(GLOB_RECURSE GTC_SOURCE ./gtc/*.cpp)
|
|
||||||
file(GLOB_RECURSE GTC_INLINE ./gtc/*.inl)
|
|
||||||
file(GLOB_RECURSE GTC_HEADER ./gtc/*.hpp)
|
|
||||||
|
|
||||||
file(GLOB_RECURSE GTX_SOURCE ./gtx/*.cpp)
|
|
||||||
file(GLOB_RECURSE GTX_INLINE ./gtx/*.inl)
|
|
||||||
file(GLOB_RECURSE GTX_HEADER ./gtx/*.hpp)
|
|
||||||
|
|
||||||
file(GLOB_RECURSE SIMD_SOURCE ./simd/*.cpp)
|
|
||||||
file(GLOB_RECURSE SIMD_INLINE ./simd/*.inl)
|
|
||||||
file(GLOB_RECURSE SIMD_HEADER ./simd/*.h)
|
|
||||||
|
|
||||||
source_group("Text Files" FILES ${ROOT_TEXT} ${ROOT_MD})
|
|
||||||
source_group("Core Files" FILES ${CORE_SOURCE})
|
|
||||||
source_group("Core Files" FILES ${CORE_INLINE})
|
|
||||||
source_group("Core Files" FILES ${CORE_HEADER})
|
|
||||||
source_group("EXT Files" FILES ${EXT_SOURCE})
|
|
||||||
source_group("EXT Files" FILES ${EXT_INLINE})
|
|
||||||
source_group("EXT Files" FILES ${EXT_HEADER})
|
|
||||||
source_group("GTC Files" FILES ${GTC_SOURCE})
|
|
||||||
source_group("GTC Files" FILES ${GTC_INLINE})
|
|
||||||
source_group("GTC Files" FILES ${GTC_HEADER})
|
|
||||||
source_group("GTX Files" FILES ${GTX_SOURCE})
|
|
||||||
source_group("GTX Files" FILES ${GTX_INLINE})
|
|
||||||
source_group("GTX Files" FILES ${GTX_HEADER})
|
|
||||||
source_group("SIMD Files" FILES ${SIMD_SOURCE})
|
|
||||||
source_group("SIMD Files" FILES ${SIMD_INLINE})
|
|
||||||
source_group("SIMD Files" FILES ${SIMD_HEADER})
|
|
||||||
|
|
||||||
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/..)
|
|
||||||
|
|
||||||
if(BUILD_STATIC_LIBS)
|
|
||||||
add_library(glm_static STATIC ${ROOT_TEXT} ${ROOT_MD} ${ROOT_NAT}
|
|
||||||
${ROOT_SOURCE} ${ROOT_INLINE} ${ROOT_HEADER}
|
|
||||||
${CORE_SOURCE} ${CORE_INLINE} ${CORE_HEADER}
|
|
||||||
${EXT_SOURCE} ${EXT_INLINE} ${EXT_HEADER}
|
|
||||||
${GTC_SOURCE} ${GTC_INLINE} ${GTC_HEADER}
|
|
||||||
${GTX_SOURCE} ${GTX_INLINE} ${GTX_HEADER}
|
|
||||||
${SIMD_SOURCE} ${SIMD_INLINE} ${SIMD_HEADER})
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(BUILD_SHARED_LIBS)
|
|
||||||
add_library(glm_shared SHARED ${ROOT_TEXT} ${ROOT_MD} ${ROOT_NAT}
|
|
||||||
${ROOT_SOURCE} ${ROOT_INLINE} ${ROOT_HEADER}
|
|
||||||
${CORE_SOURCE} ${CORE_INLINE} ${CORE_HEADER}
|
|
||||||
${EXT_SOURCE} ${EXT_INLINE} ${EXT_HEADER}
|
|
||||||
${GTC_SOURCE} ${GTC_INLINE} ${GTC_HEADER}
|
|
||||||
${GTX_SOURCE} ${GTX_INLINE} ${GTX_HEADER}
|
|
||||||
${SIMD_SOURCE} ${SIMD_INLINE} ${SIMD_HEADER})
|
|
||||||
endif()
|
|
||||||
|
|
@ -55,7 +55,6 @@ glm::mat4 camera(float Translate, glm::vec2 const& Rotate)
|
|||||||
### [GLM 0.9.9.4](https://github.com/g-truc/glm/tree/master) - 2018-1X-XX
|
### [GLM 0.9.9.4](https://github.com/g-truc/glm/tree/master) - 2018-1X-XX
|
||||||
#### Features:
|
#### Features:
|
||||||
- Added mix implementation for matrices in EXT_matrix_common #842
|
- Added mix implementation for matrices in EXT_matrix_common #842
|
||||||
- Added BUILD_SHARED_LIBS and BUILD_STATIC_LIBS build options #871
|
|
||||||
|
|
||||||
#### Improvements:
|
#### Improvements:
|
||||||
- Added GLM_FORCE_INTRINSICS to enable SIMD instruction code path. By default, it's disabled allowing constexpr support by default. #865
|
- Added GLM_FORCE_INTRINSICS to enable SIMD instruction code path. By default, it's disabled allowing constexpr support by default. #865
|
||||||
|
Loading…
Reference in New Issue
Block a user