From 0916b5f9072f7bd1b7b045ceb07758f9dc097ac2 Mon Sep 17 00:00:00 2001 From: Vincent Peyruqueou Date: Mon, 27 Mar 2023 11:46:59 +0200 Subject: Add sources of PCRE and Microsoft Visual Studio solutions to compile the lib --- pcre/notes/pcre_cmake_w32.cmd | 1 + pcre/notes/pcre_cmake_w64.cmd | 1 + 2 files changed, 2 insertions(+) create mode 100644 pcre/notes/pcre_cmake_w32.cmd create mode 100644 pcre/notes/pcre_cmake_w64.cmd (limited to 'pcre/notes') diff --git a/pcre/notes/pcre_cmake_w32.cmd b/pcre/notes/pcre_cmake_w32.cmd new file mode 100644 index 0000000..c07e104 --- /dev/null +++ b/pcre/notes/pcre_cmake_w32.cmd @@ -0,0 +1 @@ +cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=C:/pcre -DPCRE_BUILD_PCRE8=ON -DPCRE_BUILD_PCRE16=ON -DPCRE_BUILD_PCRE32=ON -DPCRE_BUILD_PCRECPP=ON -DPCRE_SUPPORT_UTF=ON -DPCRE_SUPPORT_UNICODE_PROPERTIES=ON -DPCRE_SUPPORT_JIT=ON -G "Visual Studio 14" .. diff --git a/pcre/notes/pcre_cmake_w64.cmd b/pcre/notes/pcre_cmake_w64.cmd new file mode 100644 index 0000000..1d90a2a --- /dev/null +++ b/pcre/notes/pcre_cmake_w64.cmd @@ -0,0 +1 @@ +cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=C:/pcre-w64 -DPCRE_BUILD_PCRE8=ON -DPCRE_BUILD_PCRE16=ON -DPCRE_BUILD_PCRE32=ON -DPCRE_BUILD_PCRECPP=ON -DPCRE_SUPPORT_UTF=ON -DPCRE_SUPPORT_UNICODE_PROPERTIES=ON -DPCRE_SUPPORT_JIT=ON -G "Visual Studio 14 Win64" .. -- cgit v1.1