Commit dce209f3 authored by 4ast's avatar 4ast Committed by GitHub

Merge pull request #1191 from GBuella/cmake_build_type_fix

Fix usage of CMAKE_BUILD_TYPE setting
parents a339f73f 31d4a598
...@@ -3,7 +3,9 @@ ...@@ -3,7 +3,9 @@
cmake_minimum_required(VERSION 2.8.7) cmake_minimum_required(VERSION 2.8.7)
project(bcc) project(bcc)
set(CMAKE_BUILD_TYPE Release) if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE Release)
endif()
enable_testing() enable_testing()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment