diff options
author | Saturneric <[email protected]> | 2022-03-12 12:21:39 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2022-03-12 12:21:39 +0000 |
commit | 492c9f85852c71b429f9f82a09dfce81beca7c95 (patch) | |
tree | d23c5da3edaeb14e504bdb98b03ab241947c1d04 /third_party | |
parent | <fix>(ui): Fix crash after opening a PlainTextEditorPage (diff) | |
download | GpgFrontend-492c9f85852c71b429f9f82a09dfce81beca7c95.tar.gz GpgFrontend-492c9f85852c71b429f9f82a09dfce81beca7c95.zip |
<fix>(ci): Fix the problem of MinGW compilation
1. Not compiling libconfig under MinGW
Diffstat (limited to 'third_party')
-rw-r--r-- | third_party/CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/third_party/CMakeLists.txt b/third_party/CMakeLists.txt index 618cbaa1..0df99211 100644 --- a/third_party/CMakeLists.txt +++ b/third_party/CMakeLists.txt @@ -211,5 +211,7 @@ if (NOT MINGW) add_subdirectory(libarchive) endif () +if (NOT MINGW) # libconfig -add_subdirectory(libconfig)
\ No newline at end of file +add_subdirectory(libconfig) +endif ()
\ No newline at end of file |