We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5167ef5 commit ae86668Copy full SHA for ae86668
CMakeLists.txt
@@ -1,5 +1,12 @@
1
cmake_minimum_required(VERSION 3.2)
2
3
+# Build a Release version by default (default build flags for each build type
4
+# are configured below).
5
+if (NOT EXISTS ${CMAKE_BINARY_DIR}/CMakeCache.txt)
6
+ if (NOT CMAKE_BUILD_TYPE)
7
+ set(CMAKE_BUILD_TYPE "Release" CACHE STRING "" FORCE)
8
+ endif()
9
+endif()
10
11
# Grab the current CBMC version from config.inc
12
# We do this so we have a matching cbmc version between the Makefile build and
0 commit comments