this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Hide launchd warnings and update submodules

+16
+11
src/launchd/src/CMakeLists.txt
··· 6 6 cmake_policy(SET CMP0003 NEW) 7 7 endif(COMMAND cmake_policy) 8 8 9 + add_definitions( 10 + -Wno-macro-redefined 11 + -Wno-shift-negative-value 12 + -Wno-int-conversion 13 + -Wno-format 14 + -Wno-tautological-compare 15 + -Wno-deprecated-declarations 16 + -Wextra-tokens 17 + -Wpointer-bool-conversion 18 + -Wno-implicit-function-declaration 19 + ) 9 20 10 21 include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../external/libdispatch/) 11 22 include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../external/libdispatch/private)
+5
src/launchd/support/CMakeLists.txt
··· 6 6 cmake_policy(SET CMP0003 NEW) 7 7 endif(COMMAND cmake_policy) 8 8 9 + add_definitions( 10 + -Wno-extra-tokens 11 + -Wno-pointer-bool-conversion 12 + -Wno-implicit-function-declaration 13 + ) 9 14 10 15 include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../external/libdispatch/) 11 16 include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../external/libdispatch/private)