Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9ff1430

Browse files
committedJul 3, 2020
BUILD_TYPE corresponds to Release/Debug
but LIB_TYPE corresponds to shared/static.
1 parent c8453d3 commit 9ff1430

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎.travis_scripts/cmake_builder.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ cmake --version
6666
echo ${CXX}
6767
${CXX} --version
6868
_COMPILER_NAME=`basename ${CXX}`
69-
if [ "${BUILD_TYPE}" == "shared" ]; then
69+
if [ "${LIB_TYPE}" = "shared" ]; then
7070
_CMAKE_BUILD_SHARED_LIBS=ON
7171
else
7272
_CMAKE_BUILD_SHARED_LIBS=OFF

0 commit comments

Comments
 (0)
Please sign in to comment.