Skip to content

Commit 9ff1430

Browse files
committed
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

Lines changed: 1 addition & 1 deletion
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)