mirror of
https://github.com/TheLartians/ModernCppStarter.git
synced 2025-08-30 21:51:12 +02:00
create modules directory if it doesn't exist on windows
This commit is contained in:
parent
e8d386c823
commit
ef4d37738f
1 changed files with 3 additions and 1 deletions
4
.github/workflows/windows.yml
vendored
4
.github/workflows/windows.yml
vendored
|
@ -25,7 +25,9 @@ jobs:
|
|||
key: cpm-${{ hashFiles('**/CMakeLists.txt', '**/*.cmake') }}
|
||||
|
||||
- name: configure
|
||||
run: cmake -Stest -Bbuild -DCPM_SOURCE_CACHE=$(pwd)/cpm_modules
|
||||
run: |
|
||||
mkdir -p cpm_modules
|
||||
cmake -Stest -Bbuild -DCPM_SOURCE_CACHE=$(pwd)/cpm_modules
|
||||
|
||||
- name: build
|
||||
run: cmake --build build --config Debug -j4
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue