We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b224303 commit 8c0e25dCopy full SHA for 8c0e25d
1 file changed
.github/workflows/deploy.yml
@@ -64,11 +64,12 @@ jobs:
64
65
- name: Configure DLL (Windows)
66
if: runner.os == 'Windows'
67
- # Note: We removed the Choco install. Windows runners already have CMake & VS 2022.
68
run: |
69
cmake -S backend/CaseConversionAPI/CppLib `
70
-B backend/CaseConversionAPI/CppLib/build_dll `
71
- -DCMAKE_BUILD_TYPE=Release -G "Visual Studio 17 2022" -A x64
+ -DCMAKE_BUILD_TYPE=Release `
+ -DPROCESSSTRING_EXPORTS=ON `
72
+ -G "Visual Studio 17 2022" -A x64
73
74
- name: Build DLL
75
run: cmake --build backend/CaseConversionAPI/CppLib/build_dll --config Release --parallel
0 commit comments