We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4172338 commit 12d2bd8Copy full SHA for 12d2bd8
2 files changed
.github/workflows/ci-pr-validation.yaml
@@ -101,7 +101,7 @@ jobs:
101
shell: bash
102
run: |
103
if [ "$RUNNER_OS" == "Windows" ]; then
104
- cmake --build ./build-1 --config Release
+ cmake --build ./build-1 --verbose --config Release
105
cmake --install ./build-1
106
fi
107
lib/CMakeLists.txt
@@ -107,6 +107,10 @@ if (BUILD_STATIC_LIB)
${CMAKE_SOURCE_DIR}
108
${CMAKE_SOURCE_DIR}/include)
109
if (MSVC)
110
+ if (NOT CMAKE_CL_64)
111
+ # x86 build - apply memory increase for CL.exe
112
+ target_compile_options(PULSAR_OBJECT_LIB PRIVATE "/Zm500")
113
+ endif()
114
set_property(TARGET pulsarStatic PROPERTY OUTPUT_NAME "${LIB_NAME}-static")
115
target_include_directories(pulsarStatic PRIVATE ${dlfcn-win32_INCLUDE_DIRS})
116
else ()
0 commit comments