Skip to content

Commit 583f1b7

Browse files
Moves include dependencies to include dir
1 parent a45b675 commit 583f1b7

File tree

388 files changed

+48
-46
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

388 files changed

+48
-46
lines changed

CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ set(CMAKE_CXX_STANDARD 17)
88

99
# Set to x86 for x86 architecture or x64 for x64 architecture
1010
set(ARCHITECTURE_TO_USE x64)
11+
# Add GLEW/GLFW/glm includes
12+
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/include)
1113

1214
# Make the executable
1315
add_executable(${APP_NAME} main.cpp)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

glm/CMakeLists.txt renamed to include/glm/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ source_group("SIMD Files" FILES ${SIMD_INLINE})
4343
source_group("SIMD Files" FILES ${SIMD_HEADER})
4444

4545
add_library(glm INTERFACE)
46-
target_include_directories(glm INTERFACE ../)
46+
target_include_directories(glm INTERFACE ../..)
4747

4848
if(BUILD_STATIC_LIBS)
4949
add_library(glm_static STATIC ${ROOT_TEXT} ${ROOT_MD} ${ROOT_NAT}
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)