Skip to content

Commit

Permalink
Build in Release mode
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicola Pezzotti committed May 2, 2018
1 parent c0b00cf commit 0d52789
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ On Ubuntu 16.04 you can build and install HDI by running the following commands
apt-get install qtbase5-dev libqt5webkit5-dev libflann-dev
mkdir build
cd build
cmake ../
cmake -DCMAKE_BUILD_TYPE=Release ..
make -j 8
sudo make install
```
Expand Down
2 changes: 1 addition & 1 deletion scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ export C_INCLUDE_PATH=/usr/local/include
export CPLUS_INCLUDE_PATH=/usr/local/include

cd build
cmake ../
cmake -DCMAKE_BUILD_TYPE=Release ..
make -j 8
2 changes: 1 addition & 1 deletion scripts/install-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cd CRoaring

mkdir -p build
cd build
cmake ..
cmake -DCMAKE_BUILD_TYPE=Release ..
make
sudo make install

Expand Down
2 changes: 1 addition & 1 deletion scripts/rebuild-and-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ export CPLUS_INCLUDE_PATH=/usr/local/include
rm -drf build
mkdir build
cd build
cmake ../
cmake -DCMAKE_BUILD_TYPE=Release ..
make -j 8
./applications/tdd/tdd
2 changes: 1 addition & 1 deletion scripts/rebuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ export CPLUS_INCLUDE_PATH=/usr/local/include
rm -drf build
mkdir build
cd build
cmake ../
cmake -DCMAKE_BUILD_TYPE=Release ..
make -j 8

0 comments on commit 0d52789

Please sign in to comment.