Skip to content

Commit

Permalink
add space
Browse files Browse the repository at this point in the history
  • Loading branch information
jedwards4b committed Jul 27, 2020
1 parent 266e040 commit 531882a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/clib/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ target_compile_definitions (pioc

# Compiler-specific compiler options
if ("${CMAKE_C_COMPILER_ID}" STREQUAL "GNU")
string(APPEND CMAKE_C_FLAGS "-std=c99 " )
string(APPEND CMAKE_C_FLAGS " -std=c99 " )
elseif ("${CMAKE_C_COMPILER_ID}" STREQUAL "PGI")
string(APPEND CMAKE_C_FLAGS "-c99 ")
string(APPEND CMAKE_C_FLAGS " -c99 ")
elseif ("${CMAKE_C_COMPILER_ID}" STREQUAL "Intel")
string(APPEND CMAKE_C_FLAGS "-std=c99 -debug minimal ")
string(APPEND CMAKE_C_FLAGS " -std=c99 -debug minimal ")
elseif ("${CMAKE_C_COMPILER_ID}" STREQUAL "Clang")
string(APPEND CMAKE_C_FLAGS "-std=c99 ")
string(APPEND CMAKE_C_FLAGS " -std=c99 ")
endif()
target_compile_options (pioc PRIVATE ${CMAKE_C_FLAGS})

Expand Down

0 comments on commit 531882a

Please sign in to comment.