diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2021-11-24 03:14:41 -0500 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2021-11-24 03:15:22 -0500 |
commit | 4326c5e29b279ba8ca58139848aaea4e3c62fb03 (patch) | |
tree | dd416b391b622cd8dc3050c1c51ccc3cbfc40705 /cmake | |
parent | a51a54bc5979a2491f152abc47ad54e6b63f27c8 (diff) | |
download | abaddon-portaudio-4326c5e29b279ba8ca58139848aaea4e3c62fb03.tar.gz abaddon-portaudio-4326c5e29b279ba8ca58139848aaea4e3c62fb03.zip |
remove SimpleIni as a dependency
use Glib::KeyFile instead which is basically the same file format
also read into and save from struct once, cuz its faster and less redundant
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/Findsimpleini.cmake | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/cmake/Findsimpleini.cmake b/cmake/Findsimpleini.cmake deleted file mode 100644 index fa6598a..0000000 --- a/cmake/Findsimpleini.cmake +++ /dev/null @@ -1,15 +0,0 @@ -set(simpleini_LIBRARY_NAME simpleini) - -find_path(simpleini_INCLUDE_DIR - NAMES SimpleIni.h - HINTS /usr/include - /usr/local/include - /opt/local/include - PATH_SUFFIXES ${simpleini_LIBRARY_NAME}) - -include(FindPackageHandleStandardArgs) -find_package_handle_standard_args(simpleini - REQUIRED_VARS - simpleini_INCLUDE_DIR) - -mark_as_advanced(simpleini_INCLUDE_DIR) |