Skip to content

Commit

Permalink
Merge pull request #312 from xantares/patch-1
Browse files Browse the repository at this point in the history
set default cmake build type
  • Loading branch information
neomilium committed Sep 1, 2015
2 parents 555f9ce + 5d2052e commit 4193bb4
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
PROJECT(libnfc C)
CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
cmake_minimum_required (VERSION 2.6)

if (NOT DEFINED CMAKE_BUILD_TYPE)
set (CMAKE_BUILD_TYPE Release CACHE STRING "Build type")
endif ()

project (libnfc C)

SET(VERSION_MAJOR "1")
SET(VERSION_MINOR "7")
SET(VERSION_PATCH "1")
Expand Down

0 comments on commit 4193bb4

Please sign in to comment.