mirror of
https://github.com/redstrate/Novus.git
synced 2025-06-07 21:57:46 +00:00
common: Rename to "novus-common" to match the rest of the targets
This commit is contained in:
parent
7f15ef9fd7
commit
02c6f07a32
6 changed files with 9 additions and 9 deletions
|
@ -81,7 +81,7 @@ target_link_libraries(novus-armoury PUBLIC
|
|||
physis-logger
|
||||
mdlpart
|
||||
imgui
|
||||
NovusCommon)
|
||||
novus-common)
|
||||
|
||||
install(TARGETS novus-armoury ${KF${QT_MAJOR_VERSION}_INSTALL_TARGETS_DEFAULT_ARGS})
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
# SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
|
||||
# SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
add_library(NovusCommon STATIC)
|
||||
target_sources(NovusCommon PRIVATE
|
||||
add_library(novus-common STATIC)
|
||||
target_sources(novus-common PRIVATE
|
||||
include/aboutdata.h
|
||||
include/filecache.h
|
||||
include/settings.h
|
||||
|
@ -11,8 +11,8 @@ target_sources(NovusCommon PRIVATE
|
|||
src/filecache.cpp
|
||||
src/settings.cpp
|
||||
src/utility.cpp)
|
||||
target_include_directories(NovusCommon PUBLIC
|
||||
target_include_directories(novus-common PUBLIC
|
||||
include
|
||||
PRIVATE
|
||||
${CMAKE_BINARY_DIR})
|
||||
target_link_libraries(NovusCommon PUBLIC Qt6::Core Qt6::Widgets KF6::CoreAddons KF6::ConfigCore KF6::XmlGui physis)
|
||||
target_link_libraries(novus-common PUBLIC Qt6::Core Qt6::Widgets KF6::CoreAddons KF6::ConfigCore KF6::XmlGui physis)
|
||||
|
|
|
@ -7,7 +7,7 @@ add_executable(exdviewer
|
|||
target_include_directories(exdviewer
|
||||
PUBLIC
|
||||
include)
|
||||
target_link_libraries(exdviewer PUBLIC physis z ${LIBRARIES} Qt6::Core Qt6::Widgets exdpart NovusCommon)
|
||||
target_link_libraries(exdviewer PUBLIC physis z ${LIBRARIES} Qt6::Core Qt6::Widgets exdpart novus-common)
|
||||
|
||||
install(TARGETS exdviewer
|
||||
DESTINATION "${INSTALL_BIN_PATH}")
|
||||
|
|
|
@ -11,7 +11,7 @@ add_executable(explorer
|
|||
target_include_directories(explorer
|
||||
PUBLIC
|
||||
include)
|
||||
target_link_libraries(explorer PUBLIC physis z ${LIBRARIES} Qt6::Core Qt6::Widgets NovusCommon)
|
||||
target_link_libraries(explorer PUBLIC physis z ${LIBRARIES} Qt6::Core Qt6::Widgets novus-common)
|
||||
|
||||
install(TARGETS explorer
|
||||
DESTINATION "${INSTALL_BIN_PATH}")
|
||||
|
|
|
@ -7,7 +7,7 @@ add_executable(mdlviewer
|
|||
target_include_directories(mdlviewer
|
||||
PUBLIC
|
||||
include)
|
||||
target_link_libraries(mdlviewer PUBLIC physis z ${LIBRARIES} Qt6::Core Qt6::Widgets KF6::XmlGui mdlpart NovusCommon)
|
||||
target_link_libraries(mdlviewer PUBLIC physis z ${LIBRARIES} Qt6::Core Qt6::Widgets KF6::XmlGui mdlpart novus-common)
|
||||
|
||||
install(TARGETS mdlviewer
|
||||
DESTINATION "${INSTALL_BIN_PATH}")
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
# SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
add_library(mdlpart STATIC mdlpart.cpp)
|
||||
target_link_libraries(mdlpart PUBLIC physis z Qt6::Core Qt6::Widgets renderer NovusCommon tinygltf)
|
||||
target_link_libraries(mdlpart PUBLIC physis z Qt6::Core Qt6::Widgets renderer novus-common tinygltf)
|
||||
target_include_directories(mdlpart PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
|
Loading…
Add table
Reference in a new issue