8 lines
152 B
Bash
Executable File
8 lines
152 B
Bash
Executable File
# Configure the project
|
|
cmake -B build -S .
|
|
|
|
# Build the project (includes tests)
|
|
cmake --build build
|
|
|
|
# Run all tests
|
|
cmake --build build --target test |