mirror of
https://github.com/Vita3K/Vita3K.git
synced 2025-04-02 11:02:10 -04:00
* vita3k: Use C++17 nested namespace definition * vita3k: Remove redundant call to c_str() * vita3k: Prefer C++ header * vita3k: Use structured bindings * shader: Add explicit fallthrough * vita3k: Cleanup headers and dependencies * util: Add WIN32_LEAN_AND_MEAN before <Windows.h> * modules: Remove redundant 'const' specifier on a constexpr variable * modules: Remove redundant return statement at the end of a function with a void return type * clang-format: Use C++20 standard * vita3k: Insert new line at EOF * host: rename filesystem.hpp to filesystem.h
18 lines
424 B
CMake
18 lines
424 B
CMake
add_library(
|
|
config
|
|
STATIC
|
|
include/config/config.h
|
|
include/config/functions.h
|
|
include/config/state.h
|
|
include/config/version.h
|
|
include/config/yaml.h
|
|
src/config.cpp
|
|
version.cpp
|
|
)
|
|
|
|
configure_file(src/version.cpp.in version.cpp)
|
|
|
|
target_include_directories(config PUBLIC include)
|
|
target_link_libraries(config PUBLIC util yaml-cpp)
|
|
target_link_libraries(config PRIVATE CLI11)
|
|
target_link_libraries(config PRIVATE tracy)
|