cmake: Actually add sources to the Core component

This commit is contained in:
Michael Fabian 'Xaymar' Dirks 2023-09-03 15:21:44 +02:00 committed by Xaymar
parent d8a673a578
commit 54cd3eef5b
1 changed files with 2 additions and 2 deletions

View File

@ -2069,7 +2069,6 @@ streamfx_add_library(StreamFX_Core STATIC EXCLUDE_FROM_ALL)
add_library(StreamFX::Core ALIAS StreamFX_Core)
# Register the library
target_sources(StreamFX_Core PRIVATE ${PROJECT_FILES})
target_link_libraries(StreamFX_Core
PRIVATE ${PROJECT_LIBRARIES}
PUBLIC OBS::libobs
@ -2111,7 +2110,7 @@ set_source_files_properties(${PROJECT_DATA} ${PROJECT_TEMPLATES} ${PROJECT_UI} $
HEADER_FILE_ONLY ON
)
# Enable Qt if needed
# Enable Qt if needed
if(Qt5_Found OR Qt6_FOUND)
set_target_properties(StreamFX_Core PROPERTIES
AUTOUIC ON
@ -2130,6 +2129,7 @@ if(Qt5_Found OR Qt6_FOUND)
)
endif()
target_sources(StreamFX_Core PRIVATE ${PROJECT_FILES})
################################################################################
# Components