9 lines
220 B
Bash
Executable File
9 lines
220 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Run Conan to install dependencies
|
|
conan install . -s build_type=Release --build=missing
|
|
|
|
# Run CMake with the updated CMAKE_PREFIX_PATH
|
|
#cmake -DCMAKE_BUILD_TYPE=Release -S . -B build
|
|
#cmake --build build
|