blob: 771e7c904f4503ac4ed280cf62c6ab018d15ae0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
diff --git a/Makefile b/Makefile
index 4f6e6465..9ebd3706 100644
--- a/Makefile
+++ b/Makefile
@@ -64,7 +64,7 @@ release-all:
release-static:
mkdir -p build/release
- cd build/release && cmake -D STATIC=ON -D ARCH="x86-64" -D BUILD_64=ON -D CMAKE_BUILD_TYPE=release ../.. && $(MAKE)
+ cd build/release && cmake -D STATIC=ON -D ARCH="x86-64" -D BUILD_64=ON -D CMAKE_BUILD_TYPE=release -DOPENSSL_INCLUDE_DIR=/usr/include/openssl-1.0 -DOPENSSL_SSL_LIBRARY=/usr/lib/libssl.so.1.0.0 -DOPENSSL_CRYPTO_LIBRARY=/usr/lib/libcrypto.so.1.0.0 ../.. && $(MAKE)
coverage:
mkdir -p build/debug
|