Skip to content

Commit c3092cf

Browse files
committed
Warnings are no longer errors
1 parent dc3d95e commit c3092cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ option(LIBPX_CMD "Whether or not to build the command line program." OFF)
77
option(LIBPX_TUTORIALS "Wether or not to build the tutorials." OFF)
88

99
if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
10-
set(px_cxxflags -Wall -Wextra -Werror -Wfatal-errors)
10+
set(px_cxxflags -Wall -Wextra)
1111
elseif(CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
12-
set(px_cxxflags -Wall -Wextra -Werror -Wfatal-errors)
12+
set(px_cxxflags -Wall -Wextra -Wdocumentation)
1313
endif(CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
1414

1515
if(EMSCRIPTEN)

0 commit comments

Comments
 (0)