Merge pull request #2141
94dd5cb4
Makefile: Add debug-static-all target (Erik de Castro Lopo)
This commit is contained in:
commit
54b15447d4
1 changed files with 5 additions and 1 deletions
6
Makefile
6
Makefile
|
@ -41,7 +41,11 @@ debug-test:
|
|||
|
||||
debug-all:
|
||||
mkdir -p build/debug
|
||||
cd build/debug && cmake -D BUILD_TESTS=ON -D CMAKE_BUILD_TYPE=Debug ../.. && $(MAKE)
|
||||
cd build/debug && cmake -D BUILD_TESTS=ON -D BUILD_SHARED_LIBS=OFF -D CMAKE_BUILD_TYPE=Debug ../.. && $(MAKE)
|
||||
|
||||
debug-static-all:
|
||||
mkdir -p build/debug
|
||||
cd build/debug && cmake -D BUILD_TESTS=ON -D STATIC=ON -D CMAKE_BUILD_TYPE=Debug ../.. && $(MAKE)
|
||||
|
||||
cmake-release:
|
||||
mkdir -p build/release
|
||||
|
|
Loading…
Reference in a new issue