2025-08-09 13:54:42 -04:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
2026-05-03 23:57:55 -04:00
|
|
|
|
|
|
|
|
export CMAKE_PREFIX_PATH=/home/andrew/local:/home/andrew/local/lib/cmake
|
|
|
|
|
export CMAKE_MODULE_PATH=/home/andrew/local/lib/cmake
|
|
|
|
|
#export SDL3_DIR=/home/andrew/local
|
|
|
|
|
|
2026-05-07 22:20:10 -04:00
|
|
|
rm -fr ~/local/lib/*akgl* ~/local/include/akgl build
|
2026-05-03 23:57:55 -04:00
|
|
|
cmake -S . -B build -DCMAKE_BUILD_TYPE=RelWithDebInfo
|
|
|
|
|
cmake --build build --parallel 4
|
|
|
|
|
cmake --install build --prefix /home/andrew/local
|