Skip to content

Commit e2503eb

Browse files
[refactor] renamed all root folders to lower their first character
1 parent 6282076 commit e2503eb

38 files changed

+18
-10
lines changed

.idea/.gitignore

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CMakeLists.txt

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@ project(Engine)
44
set(CMAKE_CXX_STANDARD 20)
55

66
include_directories(
7-
Include
8-
Include/Engine
9-
Include/Engine/component
10-
Include/Engine/entity
11-
Include/Engine/config
12-
Include/Engine/scene
13-
Include/Engine/Utilities
14-
Include/Engine/Utilities/Types
7+
include
8+
include/Engine
9+
include/Engine/component
10+
include/Engine/entity
11+
include/Engine/config
12+
include/Engine/scene
13+
include/Engine/Utilities
14+
include/Engine/Utilities/Types
1515
)
1616

17-
file(GLOB_RECURSE SRC Src/*.cpp)
18-
file(GLOB_RECURSE ICL Include/*.hpp)
17+
file(GLOB_RECURSE SRC src/*.cpp)
18+
file(GLOB_RECURSE ICL include/*.hpp)
1919

2020
add_executable(Engine
2121
${SRC}

0 commit comments

Comments
 (0)