Precommit (#1)

* first commit

* cleanup
This commit is contained in:
tompzf
2025-11-04 13:28:06 +01:00
committed by GitHub
parent dba45dc636
commit 6ed4b1534e
898 changed files with 256340 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
# Define project
project(sdv_local_shutdown VERSION 1.0 LANGUAGES CXX)
# build test application
add_executable(sdv_local_shutdown
"main.cpp"
"../../sdv_services/core/local_shutdown_request.h"
)
if (WIN32)
target_link_libraries(sdv_local_shutdown ${CMAKE_THREAD_LIBS_INIT} Ws2_32 Winmm Rpcrt4.lib)
else()
target_link_libraries(sdv_local_shutdown ${CMAKE_DL_LIBS} ${CMAKE_THREAD_LIBS_INIT} rt)
endif()
# Build dependencies
add_dependencies(sdv_local_shutdown core_services)
# Appending the executable to the service list
set(SDV_Executable_List ${SDV_Executable_List} sdv_local_shutdown PARENT_SCOPE)