Skip to content

Commit

Permalink
Reduce LibCXX chattiness
Browse files Browse the repository at this point in the history
USE_LIBCXX should only be tested on Apple, and should only be mentioned if it's off
  • Loading branch information
codemercenary committed Aug 18, 2014
1 parent 17838ae commit 66757cc
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,7 @@ endif()
if(NOT DEFINED USE_LIBCXX)
option(USE_LIBCXX "Build Autowiring using c++11" ON)
else()
if(${USE_LIBCXX})
message("Parent project has set USE_LIBCXX = ON -> Build Autowiring using c++11")
else()
if(NOT USE_LIBCXX)
message("Parent project has set USE_LIBCXX = OFF -> Build Autowiring using c++98")
endif()
endif()
Expand Down

0 comments on commit 66757cc

Please sign in to comment.