diff options
author | David Shah <davey1576@gmail.com> | 2018-06-18 11:45:54 +0200 |
---|---|---|
committer | David Shah <davey1576@gmail.com> | 2018-06-18 11:45:54 +0200 |
commit | a965b91321fd22eb2b2e99d17abdeb419a31512d (patch) | |
tree | 3152226bca59f24f70fe82ac8722e52708b24e55 | |
parent | fc7490370b3f81c4b0285fee545142aeb106979b (diff) | |
download | nextpnr-a965b91321fd22eb2b2e99d17abdeb419a31512d.tar.gz nextpnr-a965b91321fd22eb2b2e99d17abdeb419a31512d.tar.bz2 nextpnr-a965b91321fd22eb2b2e99d17abdeb419a31512d.zip |
Enable -Wall
Signed-off-by: David Shah <davey1576@gmail.com>
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index b9c0ff6c..06e83f6e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,7 @@ project(nextpnr) # List of families to build set(FAMILIES dummy ice40) set(CMAKE_CXX_STANDARD 11) -# set(CMAKE_CXX_FLAGS "-Wall -pedantic -Wextra -Werror") +set(CMAKE_CXX_FLAGS "-Wall") set(CMAKE_DEFIN) # List of Boost libraries to include set(boost_libs filesystem thread program_options) |