diff options
author | sanine <sanine.not@pm.me> | 2022-08-23 13:28:01 -0500 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2022-08-23 13:28:01 -0500 |
commit | ae4e17fc743ca0344af818ab767db7311ea7829c (patch) | |
tree | 0dfad8ace50a0eaeb43f398a95f36dfd30822502 /CMakeLists.txt | |
parent | 711f530f7afe3358c674cf418ee067e7a4501699 (diff) |
add basic transforms
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 17bf14d..ea8fca3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,17 +16,19 @@ include_directories( ${CMAKE_SOURCE_DIR}/src ${LIB_ROOT}/honeysuckle/src ${LIB_ROOT}/glfw-3.3.8/include + ${LIB_ROOT}/cglm/include ) +# disable byte-alignment in cglm +add_definitions(-DCGLM_ALL_UNALIGNED) + # link to third-party included libraries link_directories(${LIB_ROOT}/assimp/lib) link_directories(${LIB_ROOT}/honeysuckle) link_directories(${LIB_ROOT}/glfw-3.3.8/src) -# add_library(glad ${SRC_ROOT}/gl/glad/glad.c) -# add_library(stb_image src/stb_image/stb_image.c) add_subdirectory(${LIB_ROOT}/lua-5.1.5) -add_subdirectory(${LIB_ROOT}/assimp) +#add_subdirectory(${LIB_ROOT}/assimp) add_subdirectory(${LIB_ROOT}/honeysuckle) add_subdirectory(${LIB_ROOT}/cglm) add_subdirectory(${LIB_ROOT}/glfw-3.3.8) @@ -35,7 +37,7 @@ add_subdirectory(${LIB_ROOT}/glfw-3.3.8) set(HONEY_SOURCE ${SRC_ROOT}/main.c) add_executable(honey ${HONEY_SOURCE}) -set(LIBRARIES lua5.1 honeysuckle assimp glfw) +set(LIBRARIES lua5.1 honeysuckle glfw) if (WIN32) set(LIBRARIES ${LIBRARIES} opengl32) else() @@ -61,3 +63,4 @@ add_subdirectory(${SRC_ROOT}/logging) add_subdirectory(${SRC_ROOT}/image) add_subdirectory(${SRC_ROOT}/util) add_subdirectory(${SRC_ROOT}/test) +add_subdirectory(${SRC_ROOT}/glm) |