Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
cpyarger committed Feb 6, 2021
1 parent ab50c1d commit 9e419ed
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,16 @@ set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)

add_definitions(-DASIO_STANDALONE)
include(external/FindLibObs.cmake)
find_package(LibObs REQUIRED)

if (${isAzure})
if (WIN32 OR APPLE)
include(external/FindLibObs.cmake)
endif()
find_package(LibObs REQUIRED)
endif()
if (APPLE)
include(external/FindLibObs.cmake)
find_package(LibObs REQUIRED)
endif()

find_package(Qt5 REQUIRED COMPONENTS Core Widgets)

Expand Down

0 comments on commit 9e419ed

Please sign in to comment.