1
0
Fork 0
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:
Lars Melchior 2021-01-20 18:12:18 +01:00
parent e8d386c823
commit ef4d37738f

View file

@ -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