Skip to content

Commit

Permalink
Debug info generation is not forced anymore
Browse files Browse the repository at this point in the history
Signed-off-by: Vitaly Chernooky <vitaly.v.ch@gmail.com>
  • Loading branch information
vitalyvch committed Feb 2, 2020
1 parent 0068650 commit a575114
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions gtest/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ set_target_properties(gtest
PROPERTIES
CXX_STANDARD 11
INCLUDE_DIRECTORIES "${CMAKE_CURRENT_SOURCE_DIR}/.."
COMPILE_OPTIONS "-g;-O2;-pthread;-Wall;-Wextra;-std=gnu++11"
LINK_FLAGS "-g -O2 -pthread")
COMPILE_OPTIONS "-O2;-pthread;-Wall;-Wextra;-std=gnu++11"
LINK_FLAGS "-O2 -pthread")
4 changes: 2 additions & 2 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ add_library(rng_buf STATIC
set_target_properties(rng_buf PROPERTIES
PREFIX ""
C_STANDARD 99
COMPILE_OPTIONS "-g;-O2;-pthread;-Wall;-Wextra;-std=gnu99"
LINK_FLAGS "-g -O2 -pthread")
COMPILE_OPTIONS "-O2;-pthread;-Wall;-Wextra;-std=gnu99"
LINK_FLAGS "-O2 -pthread")

target_include_directories(rng_buf PUBLIC
${CMAKE_CURRENT_SOURCE_DIR}/..)
Expand Down

0 comments on commit a575114

Please sign in to comment.