diff options
author | Drew DeVault <sir@cmpwn.com> | 2015-09-18 07:16:20 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2015-09-18 07:16:20 -0400 |
commit | 8e25ce4e5763c74864587b0a78217eb20c299afe (patch) | |
tree | 7338bafa0e5bb5ca7897639f40f723c6689b9acb /CMakeLists.txt | |
parent | e505abfe75923d06098f6230e5a7ba39c091d3ce (diff) |
Fix build for debian stretch
Fixes #182
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index afad8123..09f37d6d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,6 +2,7 @@ cmake_minimum_required(VERSION 2.8.5) project(sway C) set(CMAKE_C_FLAGS "-g") set(CMAKE_C_STANDARD 99) +SET(CMAKE_C_EXTENSIONS OFF) set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "bin/") add_definitions("-Wall -Wextra -Wno-unused-parameter") set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${PROJECT_SOURCE_DIR}/CMake) |