Rename directories headers->include | src->source
This commit is contained in:
parent
4261ce59f7
commit
535acecc32
|
@ -55,4 +55,3 @@ Thumbs.db
|
|||
|
||||
# Libraries and dependencies
|
||||
/lib/
|
||||
/include/
|
|
@ -20,12 +20,12 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE "${CMAKE_BINARY_DIR}")
|
|||
|
||||
# Add source files
|
||||
file(GLOB_RECURSE SOURCES
|
||||
"${CMAKE_SOURCE_DIR}/src/*.cpp"
|
||||
"${CMAKE_SOURCE_DIR}/source/*.cpp"
|
||||
)
|
||||
|
||||
# Add header files
|
||||
file(GLOB_RECURSE HEADERS
|
||||
"${CMAKE_SOURCE_DIR}/headers/*.h"
|
||||
"${CMAKE_SOURCE_DIR}/include/*.h"
|
||||
)
|
||||
|
||||
# Add shader files
|
||||
|
@ -45,7 +45,7 @@ add_executable(TerraVisor ${SOURCES} ${HEADERS} ${IMGUI_SOURCES})
|
|||
|
||||
# Include directories
|
||||
include_directories(
|
||||
${CMAKE_SOURCE_DIR}/headers
|
||||
${CMAKE_SOURCE_DIR}/include
|
||||
${CMAKE_SOURCE_DIR}/imgui
|
||||
${CMAKE_SOURCE_DIR}/imgui/backends
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue