diff options
| author | 2023-11-02 18:53:40 +0100 | |
|---|---|---|
| committer | 2023-11-26 03:45:10 +0100 | |
| commit | fe3702223f0d5c2bd36a3d4d98c423157f422c10 (patch) | |
| tree | 4ed2177c84a560455cbc7dcc78e17dae476b2877 /src | |
| parent | Merge pull request #12166 from german77/redmagic (diff) | |
| download | yuzu-fe3702223f0d5c2bd36a3d4d98c423157f422c10.tar.gz yuzu-fe3702223f0d5c2bd36a3d4d98c423157f422c10.tar.xz yuzu-fe3702223f0d5c2bd36a3d4d98c423157f422c10.zip | |
cmake: prefer system simpleini library
Diffstat (limited to 'src')
| -rw-r--r-- | src/frontend_common/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | src/frontend_common/config.h | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/frontend_common/CMakeLists.txt b/src/frontend_common/CMakeLists.txt index 1537271fc..22e9337c4 100644 --- a/src/frontend_common/CMakeLists.txt +++ b/src/frontend_common/CMakeLists.txt | |||
| @@ -7,4 +7,4 @@ add_library(frontend_common STATIC | |||
| 7 | ) | 7 | ) |
| 8 | 8 | ||
| 9 | create_target_directory_groups(frontend_common) | 9 | create_target_directory_groups(frontend_common) |
| 10 | target_link_libraries(frontend_common PUBLIC core SimpleIni PRIVATE common Boost::headers) | 10 | target_link_libraries(frontend_common PUBLIC core SimpleIni::SimpleIni PRIVATE common Boost::headers) |
diff --git a/src/frontend_common/config.h b/src/frontend_common/config.h index 20a1a8056..b3812af17 100644 --- a/src/frontend_common/config.h +++ b/src/frontend_common/config.h | |||
| @@ -7,6 +7,7 @@ | |||
| 7 | #include <string> | 7 | #include <string> |
| 8 | #include "common/settings.h" | 8 | #include "common/settings.h" |
| 9 | 9 | ||
| 10 | #define SI_NO_CONVERSION | ||
| 10 | #include <SimpleIni.h> | 11 | #include <SimpleIni.h> |
| 11 | #include <boost/algorithm/string/replace.hpp> | 12 | #include <boost/algorithm/string/replace.hpp> |
| 12 | 13 | ||