Skip to content

Commit

Permalink
add developer specific build script
Browse files Browse the repository at this point in the history
  • Loading branch information
gerlachs committed Jun 24, 2018
1 parent cb56859 commit 4da10a4
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions compile-devel
@@ -0,0 +1,14 @@
#!/bin/bash

BUILDDIR=build_devel

#rm -rf $BUILDDIR

mkdir $BUILDDIR
cd $BUILDDIR

cmake .. -DCMAKE_BUILD_TYPE=Debug -DENABLE_TESTS=OFF -DCMAKE_INSTALL_PREFIX=/usr && make -j 4
#cmake .. -DCMAKE_BUILD_TYPE=Debug -DENABLE_LIBCERF=OFF -DCMAKE_INSTALL_PREFIX=/usr && make -j 4
#cmake .. -DCMAKE_BUILD_TYPE=Debug -DENABLE_TESTS=OFF -DCMAKE_INSTALL_PREFIX=/usr && make -j 4

#make install

0 comments on commit 4da10a4

Please sign in to comment.