remove delabella

This commit is contained in:
Jonathan 2022-07-21 20:06:33 -04:00
parent 46591c05f9
commit 09a03d1668
4 changed files with 1 additions and 7 deletions

4
.gitmodules vendored
View File

@ -13,7 +13,3 @@
[submodule "3rdparty/Catch2"] [submodule "3rdparty/Catch2"]
path = 3rdparty/Catch2 path = 3rdparty/Catch2
url = https://github.com/catchorg/Catch2 url = https://github.com/catchorg/Catch2
[submodule "3rdparty/delabella"]
path = 3rdparty/delabella
url = https://github.com/msokalski/delabella.git
branch = hybrid

View File

@ -2,4 +2,3 @@ add_subdirectory(fmt EXCLUDE_FROM_ALL)
add_subdirectory(Catch2 EXCLUDE_FROM_ALL) add_subdirectory(Catch2 EXCLUDE_FROM_ALL)
add_subdirectory(json EXCLUDE_FROM_ALL) add_subdirectory(json EXCLUDE_FROM_ALL)
add_subdirectory(nanobench EXCLUDE_FROM_ALL) add_subdirectory(nanobench EXCLUDE_FROM_ALL)
add_subdirectory(delabella EXCLUDE_FROM_ALL)

1
3rdparty/delabella vendored

@ -1 +0,0 @@
Subproject commit 5966f451acecd0942c07e13d5f12d7596a2ca3d0

View File

@ -31,7 +31,7 @@ set(QBSP_SOURCES
${QBSP_INCLUDES}) ${QBSP_INCLUDES})
add_library(libqbsp STATIC ${QBSP_SOURCES}) add_library(libqbsp STATIC ${QBSP_SOURCES})
target_link_libraries(libqbsp common ${CMAKE_THREAD_LIBS_INIT} TBB::tbb fmt::fmt nlohmann_json::nlohmann_json delabella::delabella) target_link_libraries(libqbsp common ${CMAKE_THREAD_LIBS_INIT} TBB::tbb fmt::fmt nlohmann_json::nlohmann_json)
add_executable(qbsp main.cc) add_executable(qbsp main.cc)
target_link_libraries(qbsp libqbsp) target_link_libraries(qbsp libqbsp)