Merge remote-tracking branch 'origin/work-branch' into startIntegrate

# Conflicts:
#	DOCS/.obsidian/workspace.json
This commit is contained in:
semenov
2025-01-15 09:51:12 +03:00
20 changed files with 243 additions and 132 deletions

View File

@@ -81,7 +81,7 @@ target_include_directories(ServerLMS PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/../../DB
if(PROJECT_TYPE_DEBUG)
target_link_directories(ServerLMS PUBLIC ${REPO_PATH}/BUILDS/DB_LMS/Debug64)
elseif()
target_link_directories(ServerLMS PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/../../../BUILDS/LMS/DB_LMS/Release64)
target_link_directories(ServerLMS PUBLIC ${REPO_PATH}/BUILDS/DB_LMS/Release64)
endif()
target_link_libraries(ServerLMS PRIVATE libDataBaseLMS.dll)
@@ -89,8 +89,16 @@ target_link_libraries(ServerLMS PRIVATE libDataBaseLMS.dll)
target_compile_definitions(ServerLMS PRIVATE SERVERLMS_LIBRARY)
add_custom_command(TARGET ServerLMS
POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy_if_different
${REPO_PATH}/BUILDS/ServerLMS/Debug64/libServerLMS.dll
${REPO_PATH}/BUILDS/TestServerLMS/Debug64)
if(PROJECT_TYPE_DEBUG)
add_custom_command(TARGET ServerLMS
POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy_if_different
${REPO_PATH}/BUILDS/ServerLMS/Debug64/libServerLMS.dll
${REPO_PATH}/BUILDS/TestServerLMS/Debug64)
elseif()
add_custom_command(TARGET ServerLMS
POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy_if_different
${REPO_PATH}/BUILDS/ServerLMS/Release64/libServerLMS.dll
${REPO_PATH}/BUILDS/TestServerLMS/Release64)
endif()