Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ target_sources(

target_include_directories(obs-browser PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/deps")

target_compile_features(obs-browser PRIVATE cxx_std_17)
target_compile_features(obs-browser PRIVATE cxx_std_20)
target_link_libraries(obs-browser PRIVATE OBS::libobs OBS::frontend-api OBS::websocket-api nlohmann_json::nlohmann_json)

if(OS_WINDOWS)
Expand Down
1 change: 1 addition & 0 deletions cmake/os-linux.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ target_sources(
target_include_directories(browser-helper PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/deps"
"${CMAKE_CURRENT_SOURCE_DIR}/obs-browser-page")

target_compile_features(browser-helper PRIVATE cxx_std_20)
target_link_libraries(browser-helper PRIVATE CEF::Wrapper CEF::Library)

target_sources(obs-browser PRIVATE deps/ip-string-posix.cpp)
Expand Down
Loading