Makefile: Add debug-static-all target
Also make debug-all target statically link all internal libraries.
This commit is contained in:
parent
ab594cfee9
commit
94dd5cb4a0
6
Makefile
6
Makefile
|
@ -41,7 +41,11 @@ debug-test:
|
||||||
|
|
||||||
debug-all:
|
debug-all:
|
||||||
mkdir -p build/debug
|
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:
|
cmake-release:
|
||||||
mkdir -p build/release
|
mkdir -p build/release
|
||||||
|
|
Loading…
Reference in New Issue