Skip to content

Commit d5d1a0e

Browse files
committed
Fix mismatched GUI lib name
1 parent 822edb6 commit d5d1a0e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.gitmodules

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
[submodule "3rd/flint_gui"]
2-
path = 3rd/flint_gui
3-
url = https://github.com/floppyhammer/flint_gui.git
4-
branch = master
51
[submodule "3rd/json"]
62
path = 3rd/json
73
url = https://github.com/nlohmann/json.git
@@ -11,3 +7,6 @@
117
[submodule "3rd/mINI"]
128
path = 3rd/mINI
139
url = https://github.com/metayeti/mINI.git
10+
[submodule "3rd/revector"]
11+
path = 3rd/revector
12+
url = https://github.com/floppyhammer/revector.git

3rd/revector

Submodule revector added at 8eca209

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ endif ()
5959
add_subdirectory(3rd/devourer)
6060
target_include_directories(${PROJECT_NAME} PRIVATE "3rd/devourer/src" "3rd/devourer/hal")
6161

62-
add_subdirectory(3rd/flint_gui)
63-
target_include_directories(${PROJECT_NAME} PRIVATE "3rd/flint_gui/src")
62+
add_subdirectory(3rd/revector)
63+
target_include_directories(${PROJECT_NAME} PRIVATE "3rd/revector/src")
6464

6565
add_subdirectory(3rd/json)
6666
target_include_directories(${PROJECT_NAME} PRIVATE "3rd/json/include")

0 commit comments

Comments
 (0)