chore: add third party modules

This commit is contained in:
2026-03-20 04:17:00 -03:00
parent 41ddaeb7d2
commit 757557d654
4 changed files with 8 additions and 2 deletions
+3
View File
@@ -0,0 +1,3 @@
[submodule "vendor/nerutils"]
path = vendor/nerutils
url = https://git.neru.rip/neru/nerutils
+2 -1
View File
@@ -40,6 +40,7 @@ endfunction()
# dependencies # dependencies
# --------------------- # ---------------------
find_package(OpenSSL REQUIRED) find_package(OpenSSL REQUIRED)
add_subdirectory(vendor)
# --------------------- # ---------------------
# warnings # warnings
@@ -56,6 +57,6 @@ endif()
# ------------------------------ # ------------------------------
file(GLOB_RECURSE UNLOCKER_SOURCES CONFIGURE_DEPENDS "src/unlocker/*.cpp" "src/unlocker/*.h") file(GLOB_RECURSE UNLOCKER_SOURCES CONFIGURE_DEPENDS "src/unlocker/*.cpp" "src/unlocker/*.h")
add_executable(dbd-unlocker ${UNLOCKER_SOURCES}) add_executable(dbd-unlocker ${UNLOCKER_SOURCES})
target_link_libraries(dbd-unlocker PRIVATE ${OPENSSL_LIBRARIES} dbd-unlocker-warnings) target_link_libraries(dbd-unlocker PRIVATE dbd-unlocker-warnings ${OPENSSL_LIBRARIES} nerutils)
target_include_directories(dbd-unlocker PRIVATE ${OPENSSL_INCLUDE__DIR}) target_include_directories(dbd-unlocker PRIVATE ${OPENSSL_INCLUDE__DIR})
group_files("${UNLOCKER_SOURCES}") group_files("${UNLOCKER_SOURCES}")
+1
View File
@@ -0,0 +1 @@
add_subdirectory(nerutils)
Vendored Submodule
+1
Submodule vendor/nerutils added at 0a9deadbd2