We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c474d2a commit 84a1fc5Copy full SHA for 84a1fc5
CMakeLists.txt
@@ -4,6 +4,12 @@ project(linuxdeploy-plugin-appimage)
4
set(CMAKE_CXX_STANDARD 11)
5
set(CMAKE_CXX_STANDARD_REQUIRED ON)
6
7
+# can be enabled globally, we do not expose any libraries
8
+set(flags "-Wall -Wextra -Werror")
9
+mark_as_advanced(flags)
10
+set(CMAKE_C_FLAGS ${flags})
11
+set(CMAKE_CXX_FLAGS ${flags})
12
+
13
add_subdirectory(lib)
14
15
add_subdirectory(src)
0 commit comments