Skip to content

Commit

Permalink
Drop unnecessary compilation flags
Browse files Browse the repository at this point in the history
  • Loading branch information
PJK committed Jan 25, 2015
1 parent b236aad commit 1b79a0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ cmake_minimum_required (VERSION 2.8)
project(libcbor)
include(CTest)

set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -O0 -Wall -pedantic -g -ggdb --coverage -fprofile-arcs -ftest-coverage -DDEBUG=true")
set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -O0 -Wall -pedantic -g -ggdb -fprofile-arcs -ftest-coverage -DDEBUG=true")
set(CMAKE_C_FLAGS_RELEASE "-O3 -Wall -pedantic -DNDEBUG")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c11")


set(CMAKE_EXE_LINKER_FLAGS_DEBUG "-g --coverage -fprofile-arcs -ftest-coverage")
set(CMAKE_EXE_LINKER_FLAGS_DEBUG "-g -fprofile-arcs -ftest-coverage")

enable_testing()

Expand Down

0 comments on commit 1b79a0c

Please sign in to comment.