diff options
author | Adam <Adam@sigterm.info> | 2023-06-02 18:20:19 -0400 |
---|---|---|
committer | Adam <Adam@sigterm.info> | 2023-06-02 19:08:55 -0400 |
commit | 07babdbd77f1978f8386791272b309949e56a09b (patch) | |
tree | 04145b62c3cf5ded5a0d5fab4afc2e96b44fbfcb /src | |
parent | fe3926f572dc25557be0119b6c35da752365bf48 (diff) |
use Conan for extra's dependencies on Windows
conan install src\win32\conanfile.txt --build=missing
cmake -B build .
cmake --build build --config Release --target PACKAGE
Diffstat (limited to 'src')
-rw-r--r-- | src/win32/conanfile.txt | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/win32/conanfile.txt b/src/win32/conanfile.txt new file mode 100644 index 000000000..38b392415 --- /dev/null +++ b/src/win32/conanfile.txt @@ -0,0 +1,18 @@ +[requires]
+libmysqlclient/8.0.31
+openssl/1.1.1t
+pcre2/10.42
+sqlite3/3.41.1
+
+[options]
+libmysqlclient/*:shared=True
+openssl/*:shared=True
+pcre2/*:shared=True
+sqlite3/*:shared=True
+
+[imports]
+., *.dll -> extradll
+., *.lib -> extralib
+
+[generators]
+cmake
\ No newline at end of file |