Skip to content

Commit

Permalink
Update to 2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
pkviet committed Apr 25, 2020
1 parent 8d8693d commit 81211da
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
13 changes: 6 additions & 7 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,8 @@ include_directories(
${Qt5Core_INCLUDES}
${Qt5Widgets_INCLUDES}
)
)

set(win-asio_QRC
set(obs-asio_QRC
asio-input.qrc)

set(obs-asio_SOURCES
Expand All @@ -75,22 +74,22 @@ set(obs-asio_SOURCES

set(JUCE_LIB optimized ${JUCE_LIBRARY} debug ${JUCE_LIBRARY_DEBUG})

qt5_add_resources(win-asio_QRC_SOURCES ${win-asio_QRC})
qt5_add_resources(obs-asio_QRC_SOURCES ${win-asio_QRC})

add_library(win-asio MODULE
add_library(obs-asio MODULE
${win-asio_SOURCES}
${win-asio_QRC_SOURCES}
)

target_link_libraries(win-asio
target_link_libraries(obs-asio
libobs
obs-frontend-api
${JUCE_LIB}
Qt5::Core
Qt5::Widgets
)

#install_obs_plugin_with_data(win-asio data) ==> internal plugin install
#install_obs_plugin_with_data(obs-asio data) ==> internal plugin install
#install_external_plugin_with_data(obs-asio data)

set(RELEASE_DIR "${PROJECT_SOURCE_DIR}/release")
Expand All @@ -109,4 +108,4 @@ add_custom_command(TARGET obs-asio POST_BUILD
"${CMAKE_COMMAND}" -E copy
"$<TARGET_FILE:obs-asio>"
"${RELEASE_DIR}/obs-plugins/${OBS_ARCH_NAME}")

)
2 changes: 1 addition & 1 deletion src/asio-input.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ class ASIOPlugin {
UNUSED_PARAMETER(data);
QMainWindow *main_window = (QMainWindow *)obs_frontend_get_main_window();
QMessageBox mybox(main_window);
QString text = "v.2.0.0\r\n © 2019, license GPL v3\r\n"
QString text = "v.2.0.2\r\n © 2019, license GPL v3\r\n"
"Based on Juce library\r\n\r\n"
"Authors:\r\n"
"Andersama (main author) & pkv\r\n";
Expand Down

0 comments on commit 81211da

Please sign in to comment.