diff options
author | Sander Vrijders <sander.vrijders@ugent.be> | 2017-04-07 12:14:09 +0200 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@ugent.be> | 2017-04-07 12:14:09 +0200 |
commit | 20d0532a4b1fd7568adf63654d023d782373873e (patch) | |
tree | 580153354f3018d08cd25d46b624bc3b4ff42300 /include | |
parent | 3be1e036a7e2174ff0a1e0f3e603f0fc5eca42d2 (diff) | |
download | ouroboros-20d0532a4b1fd7568adf63654d023d782373873e.tar.gz ouroboros-20d0532a4b1fd7568adf63654d023d782373873e.zip |
build: Change compiler check output and update wrap
This removes some of the log messages spewed out during a check of a
compiler flag. It also makes the SWIG compiler flag for C99
independent of the compiler.
Diffstat (limited to 'include')
-rw-r--r-- | include/ouroboros/wrap/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ouroboros/wrap/CMakeLists.txt b/include/ouroboros/wrap/CMakeLists.txt index 7753ca02..fd9368e8 100644 --- a/include/ouroboros/wrap/CMakeLists.txt +++ b/include/ouroboros/wrap/CMakeLists.txt @@ -17,7 +17,7 @@ else () include_directories(${PYTHON_INCLUDE_PATH}) # Python assumes C99 since Python 3.6 - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c99") + test_and_set_c_compiler_flag_global(-std=c99) swig_add_module(ouroboros python ouroboros.i) swig_link_libraries(ouroboros ${PYTHON_LIBRARIES} ouroboros) |