We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96cb63f commit 162102cCopy full SHA for 162102c
1 file changed
CMakeLists.txt
@@ -54,7 +54,7 @@ endif()
54
55
function(livekit_enable_strict_compile_warnings target_name)
56
if(MSVC)
57
- target_compile_options(${target_name} PRIVATE /permissive- /Zc:__cplusplus /W4 /WX /wd4251)
+ target_compile_options(${target_name} PRIVATE /permissive- /Zc:__cplusplus /W4 /WX /wd4251 /wd4267)
58
else()
59
target_compile_options(${target_name} PRIVATE
60
-Wall
@@ -138,6 +138,9 @@ set(LIVEKIT_PROTO_INCLUDE_DIRS
138
"${PROTO_BINARY_DIR}"
139
${Protobuf_INCLUDE_DIRS}
140
)
141
+if(DEFINED livekit_abseil_SOURCE_DIR)
142
+ list(APPEND LIVEKIT_PROTO_INCLUDE_DIRS "${livekit_abseil_SOURCE_DIR}")
143
+endif()
144
set(LIVEKIT_EXTERNAL_SYSTEM_INCLUDE_DIRS)
145
foreach(_livekit_system_include_target
146
absl::base
0 commit comments