updated build system
All checks were successful
BlockStorage/repertory/pipeline/head This commit looks good

This commit is contained in:
Scott E. Graves 2024-07-27 11:24:19 -05:00
parent ed3a45bfc6
commit bbce86cb9d
2 changed files with 5 additions and 0 deletions

View File

@ -36,6 +36,7 @@ if(PROJECT_BUILD)
httpapi httpapi
iphlpapi iphlpapi
kernel32 kernel32
mswsock
ncrypt ncrypt
ole32 ole32
oleaut32 oleaut32

View File

@ -1,6 +1,10 @@
if (NOT PROJECT_STATIC_LINK) if (NOT PROJECT_STATIC_LINK)
include_directories(SYSTEM ${CMAKE_CURRENT_SOURCE_DIR}/deps/include) include_directories(SYSTEM ${CMAKE_CURRENT_SOURCE_DIR}/deps/include)
if(PROJECT_IS_MINGW)
link_libraries(msvcr90)
endif()
list(APPEND PROJECT_ADDITIONAL_SOURCES list(APPEND PROJECT_ADDITIONAL_SOURCES
${CMAKE_CURRENT_SOURCE_DIR}/deps/src/backward.cpp ${CMAKE_CURRENT_SOURCE_DIR}/deps/src/backward.cpp
) )