Skip to content

Commit

Permalink
update_check needn't be shared
Browse files Browse the repository at this point in the history
Its function is specific to the extension
  • Loading branch information
firthm01 committed Dec 14, 2023
1 parent 3c09686 commit 93c6053
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions reaper-adm-extension/src/reaper_adm/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ find_package(JUCE REQUIRED QUIET)

set(EXTENSION_SOURCES
${EPS_SHARED_DIR}/helper/common_definition_helper.cpp
${EPS_SHARED_DIR}/update_check.cpp
${EPS_SHARED_DIR}/update_check_settings_file.cpp

actionmanager.cpp
Expand Down Expand Up @@ -70,6 +69,7 @@ set(EXTENSION_SOURCES
reaperguid.cpp
reaperhost.cpp
track.cpp
update_check.cpp
coordinate_conversion/coord_conv.cpp
progress/importdialog.cpp
progress/importlistener.cpp
Expand All @@ -85,7 +85,6 @@ set(EXTENSION_HEADERS
${EPS_SHARED_DIR}/helper/resource_paths.hpp
${EPS_SHARED_DIR}/helper/native_message_box.hpp
${EPS_SHARED_DIR}/daw_channel_count.h
${EPS_SHARED_DIR}/update_check.h
${EPS_SHARED_DIR}/update_check_settings_file.h

AppConfig.h
Expand Down Expand Up @@ -155,6 +154,7 @@ set(EXTENSION_HEADERS
reaper_plugin_functions.h
resource.h
track.h
update_check.h
win_mem_debug.h
coordinate_conversion/coord_conv.hpp
progress/importdialog.h
Expand Down Expand Up @@ -198,13 +198,13 @@ find_package(WDL REQUIRED QUIET)

target_include_directories(reaper_adm_object
PRIVATE
${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
$<TARGET_PROPERTY:WDL::swell,INTERFACE_INCLUDE_DIRECTORIES>
$<TARGET_PROPERTY:IRT::bw64,INTERFACE_INCLUDE_DIRECTORIES>
$<TARGET_PROPERTY:adm,INTERFACE_INCLUDE_DIRECTORIES>
$<TARGET_PROPERTY:nng::nng,INTERFACE_INCLUDE_DIRECTORIES>
$<TARGET_PROPERTY:Juce::core,INTERFACE_INCLUDE_DIRECTORIES>
${EPS_SHARED_DIR}
${EPS_SHARED_DIR}
)

target_link_libraries(reaper_adm_dependencies
Expand All @@ -216,9 +216,9 @@ target_link_libraries(reaper_adm_dependencies
Boost::filesystem
nng::nng
ear-version
Juce::core
Juce::core
)

add_dependencies(reaper_adm_dependencies reaper_adm_object)

set_target_properties(reaper_adm
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 93c6053

Please sign in to comment.