Skip to content
This repository has been archived by the owner on Jul 27, 2022. It is now read-only.

Commit

Permalink
Include Qt5::MacExtras
Browse files Browse the repository at this point in the history
  • Loading branch information
DDRBoxman committed Feb 7, 2018
1 parent 44d49fc commit 220ad08
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}")

find_package(Qt5Widgets REQUIRED)

if(APPLE)
find_package(Qt5MacExtras REQUIRED)
endif(APPLE)

option(VST_USE_BUNDLED_HEADERS "Build with Bundled Headers" ON)

if(VST_USE_BUNDLED_HEADERS)
Expand Down Expand Up @@ -71,7 +75,8 @@ target_link_libraries(obs-vst
if(APPLE)
target_link_libraries(obs-vst
${COCOA_FRAMEWORK}
${FOUNDATION_FRAMEWORK})
${FOUNDATION_FRAMEWORK}
Qt5::MacExtras)
endif(APPLE)

install_obs_plugin_with_data(obs-vst data)

0 comments on commit 220ad08

Please sign in to comment.