cmake: change library name to just "europa"
This commit is contained in:
parent
f79c92c742
commit
4b7a0ea612
|
@ -6,7 +6,7 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
#
|
||||
|
||||
add_library(libeuropa
|
||||
add_library(europa
|
||||
# Implementation details
|
||||
io/StreamUtils.cpp
|
||||
|
||||
|
@ -19,11 +19,11 @@ add_library(libeuropa
|
|||
io/YatfReader.cpp
|
||||
)
|
||||
|
||||
target_include_directories(libeuropa PUBLIC ${PROJECT_SOURCE_DIR}/include)
|
||||
target_include_directories(europa PUBLIC ${PROJECT_SOURCE_DIR}/include)
|
||||
|
||||
target_compile_features(libeuropa PUBLIC cxx_std_20)
|
||||
target_compile_features(europa PUBLIC cxx_std_20)
|
||||
|
||||
# Projects which libeuropa depends on
|
||||
target_link_libraries(libeuropa PUBLIC
|
||||
target_link_libraries(europa PUBLIC
|
||||
pixel::libpixel
|
||||
)
|
||||
|
|
|
@ -9,25 +9,25 @@
|
|||
add_executable(europa_pack_extractor europa_pack_extractor.cpp)
|
||||
|
||||
target_link_libraries(europa_pack_extractor PUBLIC
|
||||
libeuropa
|
||||
europa
|
||||
indicators::indicators
|
||||
)
|
||||
|
||||
add_executable(pakcreate pakcreate.cpp)
|
||||
|
||||
target_link_libraries(pakcreate PUBLIC
|
||||
libeuropa
|
||||
europa
|
||||
indicators::indicators
|
||||
)
|
||||
|
||||
add_executable(texdump texdump.cpp)
|
||||
|
||||
target_link_libraries(texdump PUBLIC
|
||||
libeuropa
|
||||
europa
|
||||
)
|
||||
|
||||
add_executable(paktest paktest.cpp)
|
||||
|
||||
target_link_libraries(paktest PUBLIC
|
||||
libeuropa
|
||||
europa
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue