From 4b7a0ea6124ad4883e44e4a25fc2a1ef954e5c85 Mon Sep 17 00:00:00 2001 From: modeco80 Date: Wed, 21 Sep 2022 03:00:17 -0500 Subject: [PATCH] cmake: change library name to just "europa" --- src/libeuropa/CMakeLists.txt | 8 ++++---- src/tools/CMakeLists.txt | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/libeuropa/CMakeLists.txt b/src/libeuropa/CMakeLists.txt index 6a4cf72..ba11aeb 100644 --- a/src/libeuropa/CMakeLists.txt +++ b/src/libeuropa/CMakeLists.txt @@ -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 ) diff --git a/src/tools/CMakeLists.txt b/src/tools/CMakeLists.txt index d92e49e..6bf5a3e 100644 --- a/src/tools/CMakeLists.txt +++ b/src/tools/CMakeLists.txt @@ -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 )