Fixed issues with new module system 4

This commit is contained in:
Ryzerth 2020-09-20 00:41:35 +02:00
parent 91d382ca0c
commit 35ef99c6e9
3 changed files with 5 additions and 2 deletions

View File

@ -19,6 +19,7 @@ file(GLOB IMGUI "src/imgui/*.cpp")
# Add code to dyn lib
add_library(sdrpp_core SHARED ${SRC} ${GUI} ${SIGPATH} ${IMGUI})
set_target_properties(sdrpp_core PROPERTIES PREFIX "")
# Include core headers
target_include_directories(sdrpp_core PUBLIC "src/")

View File

@ -11,4 +11,5 @@ endif (MSVC)
file(GLOB SRC "src/*.cpp")
add_library(demo SHARED ${SRC})
target_link_libraries(demo PRIVATE sdrpp_core)
target_link_libraries(demo PRIVATE sdrpp_core)
set_target_properties(demo PROPERTIES PREFIX "")

View File

@ -13,4 +13,5 @@ file(GLOB SRC "src/*.cpp")
include_directories("src/")
add_library(radio SHARED ${SRC})
target_link_libraries(radio PRIVATE sdrpp_core)
target_link_libraries(radio PRIVATE sdrpp_core)
set_target_properties(radio PROPERTIES PREFIX "")