Skip to content

Instantly share code, notes, and snippets.

@edg-l
Created September 6, 2021 14:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save edg-l/afee07f05a3c8366aecec448094c41e2 to your computer and use it in GitHub Desktop.
Save edg-l/afee07f05a3c8366aecec448094c41e2 to your computer and use it in GitHub Desktop.
my build script for developing ddnet
rm -rf build
mkdir -p build
cd build
export CC=/usr/bin/clang
export CXX=/usr/bin/clang++
cmake .. -GNinja -DMYSQL=ON -DCMAKE_BUILD_TYPE:STRING=RelWithDebInfo \
-DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DVIDEORECORDER=ON -DDOWNLOAD_GTEST=ON \
-D_CMAKE_TOOLCHAIN_PREFIX=llvm-
ninja
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment