From e17ca749c064ab2fa2f749804df28d92d12f8cee Mon Sep 17 00:00:00 2001 From: neru Date: Fri, 20 Mar 2026 04:23:46 -0300 Subject: [PATCH] build: enable folders and force startup proj --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0168c61..16844fb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -59,4 +59,8 @@ file(GLOB_RECURSE UNLOCKER_SOURCES CONFIGURE_DEPENDS "src/unlocker/*.cpp" "src/u add_executable(dbd-unlocker ${UNLOCKER_SOURCES}) target_link_libraries(dbd-unlocker PRIVATE dbd-unlocker-warnings ${OPENSSL_LIBRARIES} nerutils wsock32 ws2_32) target_include_directories(dbd-unlocker PRIVATE ${OPENSSL_INCLUDE__DIR}) + +set_property(TARGET dbd-unlocker PROPERTY USE_FOLDERS ON) +set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY VS_STARTUP_PROJECT dbd-unlocker) + group_files("${UNLOCKER_SOURCES}")