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/build-VS2015/_props/libpcre-static.props | 37 +++ pcre/build-VS2015/_props/libpcre.props | 33 ++ pcre/build-VS2015/_props/libpcre16-static.props | 37 +++ pcre/build-VS2015/_props/libpcre16.props | 33 ++ pcre/build-VS2015/_props/libpcre32-static.props | 37 +++ pcre/build-VS2015/_props/libpcre32.props | 33 ++ pcre/build-VS2015/_props/libpcrecpp-static.props | 37 +++ pcre/build-VS2015/_props/libpcrecpp.props | 45 +++ pcre/build-VS2015/_props/libpcreposix-static.props | 37 +++ pcre/build-VS2015/_props/libpcreposix.props | 45 +++ pcre/build-VS2015/_props/pcregrep-static.props | 45 +++ pcre/build-VS2015/_props/pcregrep.props | 45 +++ pcre/build-VS2015/_props/testapp-static.props | 45 +++ pcre/build-VS2015/_props/testapp.props | 45 +++ pcre/build-VS2015/_props/vs_common.props | 79 +++++ .../libpcre-static/libpcre-static.vcxproj | 127 ++++++++ .../libpcre-static/libpcre-static.vcxproj.filters | 105 +++++++ pcre/build-VS2015/libpcre/libpcre.vcxproj | 130 ++++++++ pcre/build-VS2015/libpcre/libpcre.vcxproj.filters | 110 +++++++ .../libpcre16-static/libpcre16-static.vcxproj | 128 ++++++++ .../libpcre16-static.vcxproj.filters | 105 +++++++ pcre/build-VS2015/libpcre16/libpcre16.vcxproj | 131 ++++++++ .../libpcre16/libpcre16.vcxproj.filters | 110 +++++++ .../libpcre32-static/libpcre32-static.vcxproj | 128 ++++++++ .../libpcre32-static.vcxproj.filters | 105 +++++++ pcre/build-VS2015/libpcre32/libpcre32.vcxproj | 131 ++++++++ .../libpcre32/libpcre32.vcxproj.filters | 110 +++++++ .../libpcrecpp-static/libpcrecpp-static.vcxproj | 112 +++++++ .../libpcrecpp-static.vcxproj.filters | 57 ++++ pcre/build-VS2015/libpcrecpp/libpcrecpp.vcxproj | 115 +++++++ .../libpcrecpp/libpcrecpp.vcxproj.filters | 62 ++++ .../libpcreposix-static.vcxproj | 108 +++++++ .../libpcreposix-static.vcxproj.filters | 45 +++ .../build-VS2015/libpcreposix/libpcreposix.vcxproj | 111 +++++++ .../libpcreposix/libpcreposix.vcxproj.filters | 50 +++ pcre/build-VS2015/pcre.sln | 340 +++++++++++++++++++++ .../pcregrep-static/pcregrep-static.vcxproj | 108 +++++++ .../pcregrep-static.vcxproj.filters | 41 +++ pcre/build-VS2015/pcregrep/pcregrep.vcxproj | 108 +++++++ .../build-VS2015/pcregrep/pcregrep.vcxproj.filters | 41 +++ .../pcre_jit_test-static.vcxproj | 107 +++++++ .../pcre_jit_test-static.vcxproj.filters | 42 +++ .../tests/pcre_jit_test/pcre_jit_test.vcxproj | 107 +++++++ .../pcre_jit_test/pcre_jit_test.vcxproj.filters | 42 +++ .../pcre_scanner_unittest-static.vcxproj | 109 +++++++ .../pcre_scanner_unittest-static.vcxproj.filters | 48 +++ .../pcre_scanner_unittest.vcxproj | 109 +++++++ .../pcre_scanner_unittest.vcxproj.filters | 48 +++ .../pcre_stringpiece_unittest-static.vcxproj | 108 +++++++ ...cre_stringpiece_unittest-static.vcxproj.filters | 45 +++ .../pcre_stringpiece_unittest.vcxproj | 108 +++++++ .../pcre_stringpiece_unittest.vcxproj.filters | 45 +++ .../pcrecpp_unittest-static.vcxproj | 108 +++++++ .../pcrecpp_unittest-static.vcxproj.filters | 45 +++ .../pcrecpp_unittest/pcrecpp_unittest.vcxproj | 108 +++++++ .../pcrecpp_unittest.vcxproj.filters | 45 +++ .../tests/pcretest-static/pcretest-static.vcxproj | 118 +++++++ .../pcretest-static.vcxproj.filters | 51 ++++ pcre/build-VS2015/tests/pcretest/pcretest.vcxproj | 118 +++++++ .../tests/pcretest/pcretest.vcxproj.filters | 51 ++++ 60 files changed, 4913 insertions(+) create mode 100644 pcre/build-VS2015/_props/libpcre-static.props create mode 100644 pcre/build-VS2015/_props/libpcre.props create mode 100644 pcre/build-VS2015/_props/libpcre16-static.props create mode 100644 pcre/build-VS2015/_props/libpcre16.props create mode 100644 pcre/build-VS2015/_props/libpcre32-static.props create mode 100644 pcre/build-VS2015/_props/libpcre32.props create mode 100644 pcre/build-VS2015/_props/libpcrecpp-static.props create mode 100644 pcre/build-VS2015/_props/libpcrecpp.props create mode 100644 pcre/build-VS2015/_props/libpcreposix-static.props create mode 100644 pcre/build-VS2015/_props/libpcreposix.props create mode 100644 pcre/build-VS2015/_props/pcregrep-static.props create mode 100644 pcre/build-VS2015/_props/pcregrep.props create mode 100644 pcre/build-VS2015/_props/testapp-static.props create mode 100644 pcre/build-VS2015/_props/testapp.props create mode 100644 pcre/build-VS2015/_props/vs_common.props create mode 100644 pcre/build-VS2015/libpcre-static/libpcre-static.vcxproj create mode 100644 pcre/build-VS2015/libpcre-static/libpcre-static.vcxproj.filters create mode 100644 pcre/build-VS2015/libpcre/libpcre.vcxproj create mode 100644 pcre/build-VS2015/libpcre/libpcre.vcxproj.filters create mode 100644 pcre/build-VS2015/libpcre16-static/libpcre16-static.vcxproj create mode 100644 pcre/build-VS2015/libpcre16-static/libpcre16-static.vcxproj.filters create mode 100644 pcre/build-VS2015/libpcre16/libpcre16.vcxproj create mode 100644 pcre/build-VS2015/libpcre16/libpcre16.vcxproj.filters create mode 100644 pcre/build-VS2015/libpcre32-static/libpcre32-static.vcxproj create mode 100644 pcre/build-VS2015/libpcre32-static/libpcre32-static.vcxproj.filters create mode 100644 pcre/build-VS2015/libpcre32/libpcre32.vcxproj create mode 100644 pcre/build-VS2015/libpcre32/libpcre32.vcxproj.filters create mode 100644 pcre/build-VS2015/libpcrecpp-static/libpcrecpp-static.vcxproj create mode 100644 pcre/build-VS2015/libpcrecpp-static/libpcrecpp-static.vcxproj.filters create mode 100644 pcre/build-VS2015/libpcrecpp/libpcrecpp.vcxproj create mode 100644 pcre/build-VS2015/libpcrecpp/libpcrecpp.vcxproj.filters create mode 100644 pcre/build-VS2015/libpcreposix-static/libpcreposix-static.vcxproj create mode 100644 pcre/build-VS2015/libpcreposix-static/libpcreposix-static.vcxproj.filters create mode 100644 pcre/build-VS2015/libpcreposix/libpcreposix.vcxproj create mode 100644 pcre/build-VS2015/libpcreposix/libpcreposix.vcxproj.filters create mode 100644 pcre/build-VS2015/pcre.sln create mode 100644 pcre/build-VS2015/pcregrep-static/pcregrep-static.vcxproj create mode 100644 pcre/build-VS2015/pcregrep-static/pcregrep-static.vcxproj.filters create mode 100644 pcre/build-VS2015/pcregrep/pcregrep.vcxproj create mode 100644 pcre/build-VS2015/pcregrep/pcregrep.vcxproj.filters create mode 100644 pcre/build-VS2015/tests/pcre_jit_test-static/pcre_jit_test-static.vcxproj create mode 100644 pcre/build-VS2015/tests/pcre_jit_test-static/pcre_jit_test-static.vcxproj.filters create mode 100644 pcre/build-VS2015/tests/pcre_jit_test/pcre_jit_test.vcxproj create mode 100644 pcre/build-VS2015/tests/pcre_jit_test/pcre_jit_test.vcxproj.filters create mode 100644 pcre/build-VS2015/tests/pcre_scanner_unittest-static/pcre_scanner_unittest-static.vcxproj create mode 100644 pcre/build-VS2015/tests/pcre_scanner_unittest-static/pcre_scanner_unittest-static.vcxproj.filters create mode 100644 pcre/build-VS2015/tests/pcre_scanner_unittest/pcre_scanner_unittest.vcxproj create mode 100644 pcre/build-VS2015/tests/pcre_scanner_unittest/pcre_scanner_unittest.vcxproj.filters create mode 100644 pcre/build-VS2015/tests/pcre_stringpiece_unittest-static/pcre_stringpiece_unittest-static.vcxproj create mode 100644 pcre/build-VS2015/tests/pcre_stringpiece_unittest-static/pcre_stringpiece_unittest-static.vcxproj.filters create mode 100644 pcre/build-VS2015/tests/pcre_stringpiece_unittest/pcre_stringpiece_unittest.vcxproj create mode 100644 pcre/build-VS2015/tests/pcre_stringpiece_unittest/pcre_stringpiece_unittest.vcxproj.filters create mode 100644 pcre/build-VS2015/tests/pcrecpp_unittest-static/pcrecpp_unittest-static.vcxproj create mode 100644 pcre/build-VS2015/tests/pcrecpp_unittest-static/pcrecpp_unittest-static.vcxproj.filters create mode 100644 pcre/build-VS2015/tests/pcrecpp_unittest/pcrecpp_unittest.vcxproj create mode 100644 pcre/build-VS2015/tests/pcrecpp_unittest/pcrecpp_unittest.vcxproj.filters create mode 100644 pcre/build-VS2015/tests/pcretest-static/pcretest-static.vcxproj create mode 100644 pcre/build-VS2015/tests/pcretest-static/pcretest-static.vcxproj.filters create mode 100644 pcre/build-VS2015/tests/pcretest/pcretest.vcxproj create mode 100644 pcre/build-VS2015/tests/pcretest/pcretest.vcxproj.filters (limited to 'pcre/build-VS2015') diff --git a/pcre/build-VS2015/_props/libpcre-static.props b/pcre/build-VS2015/_props/libpcre-static.props new file mode 100644 index 0000000..0e6fa98 --- /dev/null +++ b/pcre/build-VS2015/_props/libpcre-static.props @@ -0,0 +1,37 @@ + + + + + + + + + + BUILDING_PCRE;PCRE_STATIC;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + true + + + + + BUILDING_PCRE;PCRE_STATIC;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + true + + + + + BUILDING_PCRE;PCRE_STATIC;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + true + + + + + BUILDING_PCRE;PCRE_STATIC;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + true + + + + \ No newline at end of file diff --git a/pcre/build-VS2015/_props/libpcre.props b/pcre/build-VS2015/_props/libpcre.props new file mode 100644 index 0000000..704ca6a --- /dev/null +++ b/pcre/build-VS2015/_props/libpcre.props @@ -0,0 +1,33 @@ + + + + + + + + + + BUILDING_PCRE;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + + + + + BUILDING_PCRE;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + + + + + BUILDING_PCRE;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + + + + + BUILDING_PCRE;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + + + + \ No newline at end of file diff --git a/pcre/build-VS2015/_props/libpcre16-static.props b/pcre/build-VS2015/_props/libpcre16-static.props new file mode 100644 index 0000000..0e6fa98 --- /dev/null +++ b/pcre/build-VS2015/_props/libpcre16-static.props @@ -0,0 +1,37 @@ + + + + + + + + + + BUILDING_PCRE;PCRE_STATIC;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + true + + + + + BUILDING_PCRE;PCRE_STATIC;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + true + + + + + BUILDING_PCRE;PCRE_STATIC;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + true + + + + + BUILDING_PCRE;PCRE_STATIC;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + true + + + + \ No newline at end of file diff --git a/pcre/build-VS2015/_props/libpcre16.props b/pcre/build-VS2015/_props/libpcre16.props new file mode 100644 index 0000000..704ca6a --- /dev/null +++ b/pcre/build-VS2015/_props/libpcre16.props @@ -0,0 +1,33 @@ + + + + + + + + + + BUILDING_PCRE;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + + + + + BUILDING_PCRE;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + + + + + BUILDING_PCRE;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + + + + + BUILDING_PCRE;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + + + + \ No newline at end of file diff --git a/pcre/build-VS2015/_props/libpcre32-static.props b/pcre/build-VS2015/_props/libpcre32-static.props new file mode 100644 index 0000000..0e6fa98 --- /dev/null +++ b/pcre/build-VS2015/_props/libpcre32-static.props @@ -0,0 +1,37 @@ + + + + + + + + + + BUILDING_PCRE;PCRE_STATIC;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + true + + + + + BUILDING_PCRE;PCRE_STATIC;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + true + + + + + BUILDING_PCRE;PCRE_STATIC;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + true + + + + + BUILDING_PCRE;PCRE_STATIC;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + true + + + + \ No newline at end of file diff --git a/pcre/build-VS2015/_props/libpcre32.props b/pcre/build-VS2015/_props/libpcre32.props new file mode 100644 index 0000000..704ca6a --- /dev/null +++ b/pcre/build-VS2015/_props/libpcre32.props @@ -0,0 +1,33 @@ + + + + + + + + + + BUILDING_PCRE;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + + + + + BUILDING_PCRE;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + + + + + BUILDING_PCRE;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + + + + + BUILDING_PCRE;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + + + + \ No newline at end of file diff --git a/pcre/build-VS2015/_props/libpcrecpp-static.props b/pcre/build-VS2015/_props/libpcrecpp-static.props new file mode 100644 index 0000000..0e6fa98 --- /dev/null +++ b/pcre/build-VS2015/_props/libpcrecpp-static.props @@ -0,0 +1,37 @@ + + + + + + + + + + BUILDING_PCRE;PCRE_STATIC;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + true + + + + + BUILDING_PCRE;PCRE_STATIC;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + true + + + + + BUILDING_PCRE;PCRE_STATIC;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + true + + + + + BUILDING_PCRE;PCRE_STATIC;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + true + + + + \ No newline at end of file diff --git a/pcre/build-VS2015/_props/libpcrecpp.props b/pcre/build-VS2015/_props/libpcrecpp.props new file mode 100644 index 0000000..5d8fed7 --- /dev/null +++ b/pcre/build-VS2015/_props/libpcrecpp.props @@ -0,0 +1,45 @@ + + + + + + + + + + BUILDING_PCRE;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + + + $(OutDir)libpcre.lib;%(AdditionalDependencies) + + + + + BUILDING_PCRE;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + + + $(OutDir)libpcre.lib;%(AdditionalDependencies) + + + + + BUILDING_PCRE;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + + + $(OutDir)libpcre.lib;%(AdditionalDependencies) + + + + + BUILDING_PCRE;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + + + $(OutDir)libpcre.lib;%(AdditionalDependencies) + + + + \ No newline at end of file diff --git a/pcre/build-VS2015/_props/libpcreposix-static.props b/pcre/build-VS2015/_props/libpcreposix-static.props new file mode 100644 index 0000000..0e6fa98 --- /dev/null +++ b/pcre/build-VS2015/_props/libpcreposix-static.props @@ -0,0 +1,37 @@ + + + + + + + + + + BUILDING_PCRE;PCRE_STATIC;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + true + + + + + BUILDING_PCRE;PCRE_STATIC;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + true + + + + + BUILDING_PCRE;PCRE_STATIC;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + true + + + + + BUILDING_PCRE;PCRE_STATIC;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + true + + + + \ No newline at end of file diff --git a/pcre/build-VS2015/_props/libpcreposix.props b/pcre/build-VS2015/_props/libpcreposix.props new file mode 100644 index 0000000..5d8fed7 --- /dev/null +++ b/pcre/build-VS2015/_props/libpcreposix.props @@ -0,0 +1,45 @@ + + + + + + + + + + BUILDING_PCRE;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + + + $(OutDir)libpcre.lib;%(AdditionalDependencies) + + + + + BUILDING_PCRE;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + + + $(OutDir)libpcre.lib;%(AdditionalDependencies) + + + + + BUILDING_PCRE;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + + + $(OutDir)libpcre.lib;%(AdditionalDependencies) + + + + + BUILDING_PCRE;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + + + $(OutDir)libpcre.lib;%(AdditionalDependencies) + + + + \ No newline at end of file diff --git a/pcre/build-VS2015/_props/pcregrep-static.props b/pcre/build-VS2015/_props/pcregrep-static.props new file mode 100644 index 0000000..7b26135 --- /dev/null +++ b/pcre/build-VS2015/_props/pcregrep-static.props @@ -0,0 +1,45 @@ + + + + + + + + + + PCRE_STATIC;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + + + setargv.obj;$(OutDir)libpcre-static.lib;%(AdditionalDependencies) + + + + + PCRE_STATIC;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + + + setargv.obj;$(OutDir)libpcre-static.lib;%(AdditionalDependencies) + + + + + PCRE_STATIC;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + + + setargv.obj;$(OutDir)libpcre-static.lib;%(AdditionalDependencies) + + + + + PCRE_STATIC;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + + + setargv.obj;$(OutDir)libpcre-static.lib;%(AdditionalDependencies) + + + + \ No newline at end of file diff --git a/pcre/build-VS2015/_props/pcregrep.props b/pcre/build-VS2015/_props/pcregrep.props new file mode 100644 index 0000000..b91b926 --- /dev/null +++ b/pcre/build-VS2015/_props/pcregrep.props @@ -0,0 +1,45 @@ + + + + + + + + + + WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + + + setargv.obj;$(OutDir)libpcre.lib;%(AdditionalDependencies) + + + + + WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + + + setargv.obj;$(OutDir)libpcre.lib;%(AdditionalDependencies) + + + + + WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + + + setargv.obj;$(OutDir)libpcre.lib;%(AdditionalDependencies) + + + + + WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\win32;..\..\include;..\.. + + + setargv.obj;$(OutDir)libpcre.lib;%(AdditionalDependencies) + + + + \ No newline at end of file diff --git a/pcre/build-VS2015/_props/testapp-static.props b/pcre/build-VS2015/_props/testapp-static.props new file mode 100644 index 0000000..0ef8dba --- /dev/null +++ b/pcre/build-VS2015/_props/testapp-static.props @@ -0,0 +1,45 @@ + + + + + + + + + + PCRE_STATIC;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\..\win32;..\..\..\include;..\..\.. + + + setargv.obj;$(OutDir)libpcre-static.lib;$(OutDir)libpcre16-static.lib;$(OutDir)libpcre32-static.lib;$(OutDir)libpcreposix-static.lib;$(OutDir)libpcrecpp-static.lib;%(AdditionalDependencies) + + + + + PCRE_STATIC;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\..\win32;..\..\..\include;..\..\.. + + + setargv.obj;$(OutDir)libpcre-static.lib;$(OutDir)libpcre16-static.lib;$(OutDir)libpcre32-static.lib;$(OutDir)libpcreposix-static.lib;$(OutDir)libpcrecpp-static.lib;%(AdditionalDependencies) + + + + + PCRE_STATIC;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\..\win32;..\..\..\include;..\..\.. + + + setargv.obj;$(OutDir)libpcre-static.lib;$(OutDir)libpcre16-static.lib;$(OutDir)libpcre32-static.lib;$(OutDir)libpcreposix-static.lib;$(OutDir)libpcrecpp-static.lib;%(AdditionalDependencies) + + + + + PCRE_STATIC;WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\..\win32;..\..\..\include;..\..\.. + + + setargv.obj;$(OutDir)libpcre-static.lib;$(OutDir)libpcre16-static.lib;$(OutDir)libpcre32-static.lib;$(OutDir)libpcreposix-static.lib;$(OutDir)libpcrecpp-static.lib;%(AdditionalDependencies) + + + + \ No newline at end of file diff --git a/pcre/build-VS2015/_props/testapp.props b/pcre/build-VS2015/_props/testapp.props new file mode 100644 index 0000000..fccd7aa --- /dev/null +++ b/pcre/build-VS2015/_props/testapp.props @@ -0,0 +1,45 @@ + + + + + + + + + + WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\..\win32;..\..\..\include;..\..\.. + + + setargv.obj;$(OutDir)libpcre.lib;$(OutDir)libpcre16.lib;$(OutDir)libpcre32.lib;$(OutDir)libpcreposix.lib;$(OutDir)libpcrecpp.lib;%(AdditionalDependencies) + + + + + WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\..\win32;..\..\..\include;..\..\.. + + + setargv.obj;$(OutDir)libpcre.lib;$(OutDir)libpcre16.lib;$(OutDir)libpcre32.lib;$(OutDir)libpcreposix.lib;$(OutDir)libpcrecpp.lib;%(AdditionalDependencies) + + + + + WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\..\win32;..\..\..\include;..\..\.. + + + setargv.obj;$(OutDir)libpcre.lib;$(OutDir)libpcre16.lib;$(OutDir)libpcre32.lib;$(OutDir)libpcreposix.lib;$(OutDir)libpcrecpp.lib;%(AdditionalDependencies) + + + + + WIN32;_WINDOWS;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + ..\..\..\win32;..\..\..\include;..\..\.. + + + setargv.obj;$(OutDir)libpcre.lib;$(OutDir)libpcre16.lib;$(OutDir)libpcre32.lib;$(OutDir)libpcreposix.lib;$(OutDir)libpcrecpp.lib;%(AdditionalDependencies) + + + + \ No newline at end of file diff --git a/pcre/build-VS2015/_props/vs_common.props b/pcre/build-VS2015/_props/vs_common.props new file mode 100644 index 0000000..017a77e --- /dev/null +++ b/pcre/build-VS2015/_props/vs_common.props @@ -0,0 +1,79 @@ + + + + + + + + Level3 + true + true + ProgramDatabase + 4090 + + + true + + + MachineX86 + + + + + Level3 + MaxSpeed + true + AnySuitable + true + true + true + ProgramDatabase + 4090 + + + true + true + true + + + MachineX86 + + + + + Level3 + true + true + ProgramDatabase + 4090 + + + true + + + MachineX64 + + + + + Level3 + MaxSpeed + true + AnySuitable + true + true + true + ProgramDatabase + 4090 + + + true + true + true + + + MachineX64 + + + + \ No newline at end of file diff --git a/pcre/build-VS2015/libpcre-static/libpcre-static.vcxproj b/pcre/build-VS2015/libpcre-static/libpcre-static.vcxproj new file mode 100644 index 0000000..5d2334c --- /dev/null +++ b/pcre/build-VS2015/libpcre-static/libpcre-static.vcxproj @@ -0,0 +1,127 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {5E70CAAF-437F-4EC1-87F4-D896276AB1E1} + libpcre-static + + + + StaticLibrary + true + v140 + + + StaticLibrary + true + v140 + + + StaticLibrary + false + v140 + true + + + StaticLibrary + false + v140 + true + + + + + + + + + + + + + + + + + + + + + + + + + + + _DEBUG;%(PreprocessorDefinitions) + + + + + + NDEBUG;%(PreprocessorDefinitions) + + + + + + _DEBUG;%(PreprocessorDefinitions) + + + + + + NDEBUG;%(PreprocessorDefinitions) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/pcre/build-VS2015/libpcre-static/libpcre-static.vcxproj.filters b/pcre/build-VS2015/libpcre-static/libpcre-static.vcxproj.filters new file mode 100644 index 0000000..8b753cf --- /dev/null +++ b/pcre/build-VS2015/libpcre-static/libpcre-static.vcxproj.filters @@ -0,0 +1,105 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + {9bd6c07a-4a25-4cea-866c-99a6ee317e3e} + + + {10aa782a-f451-4cd5-bf7f-55ac4bf7d9c6} + + + {c3388373-2a38-4fb8-8f41-299b9d217e2d} + + + + + Header Files\include + + + Header Files + + + Header Files + + + Header Files\win32 + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files\win32 + + + \ No newline at end of file diff --git a/pcre/build-VS2015/libpcre/libpcre.vcxproj b/pcre/build-VS2015/libpcre/libpcre.vcxproj new file mode 100644 index 0000000..69e3c21 --- /dev/null +++ b/pcre/build-VS2015/libpcre/libpcre.vcxproj @@ -0,0 +1,130 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {DA8CB038-FD70-44B5-8ADA-5E32CA9ECACE} + libpcre + + + + DynamicLibrary + true + v140 + + + DynamicLibrary + true + v140 + + + DynamicLibrary + false + v140 + true + + + DynamicLibrary + false + v140 + true + + + + + + + + + + + + + + + + + + + + + + + + + + + _DEBUG;%(PreprocessorDefinitions) + + + + + + NDEBUG;%(PreprocessorDefinitions) + + + + + + _DEBUG;%(PreprocessorDefinitions) + + + + + + NDEBUG;%(PreprocessorDefinitions) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/pcre/build-VS2015/libpcre/libpcre.vcxproj.filters b/pcre/build-VS2015/libpcre/libpcre.vcxproj.filters new file mode 100644 index 0000000..a2340e3 --- /dev/null +++ b/pcre/build-VS2015/libpcre/libpcre.vcxproj.filters @@ -0,0 +1,110 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + {912e8a6a-4e88-4e2d-963a-ffc0f3c97aa3} + + + {84f9b944-5498-4930-903b-d704b2e39035} + + + {a5fdcb0c-350c-4ad9-a007-5e7b48283302} + + + + + Header Files\include + + + Header Files + + + Header Files + + + Header Files\win32 + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files\win32 + + + + + Resource Files + + + \ No newline at end of file diff --git a/pcre/build-VS2015/libpcre16-static/libpcre16-static.vcxproj b/pcre/build-VS2015/libpcre16-static/libpcre16-static.vcxproj new file mode 100644 index 0000000..477d15b --- /dev/null +++ b/pcre/build-VS2015/libpcre16-static/libpcre16-static.vcxproj @@ -0,0 +1,128 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {A0964D8D-ED36-40CF-BEC8-E7D87457AA97} + libpcre16-static + + + + StaticLibrary + true + v140 + + + StaticLibrary + true + v140 + + + StaticLibrary + false + v140 + true + + + StaticLibrary + false + v140 + true + + + + + + + + + + + + + + + + + + + + + + + + + + + _DEBUG;%(PreprocessorDefinitions) + + + + + + NDEBUG;%(PreprocessorDefinitions) + + + + + + _DEBUG;%(PreprocessorDefinitions) + + + + + + NDEBUG;%(PreprocessorDefinitions) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/pcre/build-VS2015/libpcre16-static/libpcre16-static.vcxproj.filters b/pcre/build-VS2015/libpcre16-static/libpcre16-static.vcxproj.filters new file mode 100644 index 0000000..28b700c --- /dev/null +++ b/pcre/build-VS2015/libpcre16-static/libpcre16-static.vcxproj.filters @@ -0,0 +1,105 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + {8a1245ba-6f80-4f89-99c5-54c7a9e7c30e} + + + {3e54389a-f72f-4731-a187-add37c35dc99} + + + + + Header Files\include + + + Header Files + + + Header Files + + + Header Files\win32 + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + \ No newline at end of file diff --git a/pcre/build-VS2015/libpcre16/libpcre16.vcxproj b/pcre/build-VS2015/libpcre16/libpcre16.vcxproj new file mode 100644 index 0000000..ae234f9 --- /dev/null +++ b/pcre/build-VS2015/libpcre16/libpcre16.vcxproj @@ -0,0 +1,131 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {94D92D6A-221A-486C-85CC-9D0BFFF1C20E} + libpcre16 + + + + DynamicLibrary + true + v140 + + + DynamicLibrary + true + v140 + + + DynamicLibrary + false + v140 + true + + + DynamicLibrary + false + v140 + true + + + + + + + + + + + + + + + + + + + + + + + + + + + _DEBUG;%(PreprocessorDefinitions) + + + + + + NDEBUG;%(PreprocessorDefinitions) + + + + + + _DEBUG;%(PreprocessorDefinitions) + + + + + + NDEBUG;%(PreprocessorDefinitions) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/pcre/build-VS2015/libpcre16/libpcre16.vcxproj.filters b/pcre/build-VS2015/libpcre16/libpcre16.vcxproj.filters new file mode 100644 index 0000000..6a1e317 --- /dev/null +++ b/pcre/build-VS2015/libpcre16/libpcre16.vcxproj.filters @@ -0,0 +1,110 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + {7f485083-56f0-4b07-a3cd-cdb7384297b7} + + + {16f39921-edeb-49b9-9067-e821a3be4759} + + + + + Header Files\include + + + Header Files + + + Header Files + + + Header Files\win32 + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + + + Resource Files + + + \ No newline at end of file diff --git a/pcre/build-VS2015/libpcre32-static/libpcre32-static.vcxproj b/pcre/build-VS2015/libpcre32-static/libpcre32-static.vcxproj new file mode 100644 index 0000000..79fbb4d --- /dev/null +++ b/pcre/build-VS2015/libpcre32-static/libpcre32-static.vcxproj @@ -0,0 +1,128 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {DDFDFF9B-08DB-4806-B66B-9A488E9891A7} + libpcre32-static + + + + StaticLibrary + true + v140 + + + StaticLibrary + true + v140 + + + StaticLibrary + false + v140 + true + + + StaticLibrary + false + v140 + true + + + + + + + + + + + + + + + + + + + + + + + + + + + _DEBUG;%(PreprocessorDefinitions) + + + + + + NDEBUG;%(PreprocessorDefinitions) + + + + + + _DEBUG;%(PreprocessorDefinitions) + + + + + + NDEBUG;%(PreprocessorDefinitions) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/pcre/build-VS2015/libpcre32-static/libpcre32-static.vcxproj.filters b/pcre/build-VS2015/libpcre32-static/libpcre32-static.vcxproj.filters new file mode 100644 index 0000000..cca8fbc --- /dev/null +++ b/pcre/build-VS2015/libpcre32-static/libpcre32-static.vcxproj.filters @@ -0,0 +1,105 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + {4f375e07-6ef0-42da-b6ea-c45eb562bd3a} + + + {8b4f2b41-40d3-4d8e-8ed1-06cc06fbecc8} + + + + + Header Files\include + + + Header Files + + + Header Files + + + Header Files\win32 + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + \ No newline at end of file diff --git a/pcre/build-VS2015/libpcre32/libpcre32.vcxproj b/pcre/build-VS2015/libpcre32/libpcre32.vcxproj new file mode 100644 index 0000000..a933773 --- /dev/null +++ b/pcre/build-VS2015/libpcre32/libpcre32.vcxproj @@ -0,0 +1,131 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {8DE7AFAB-08EE-436E-BE84-62EA1DE99E4C} + libpcre32 + + + + DynamicLibrary + true + v140 + + + DynamicLibrary + true + v140 + + + DynamicLibrary + false + v140 + true + + + DynamicLibrary + false + v140 + true + + + + + + + + + + + + + + + + + + + + + + + + + + + _DEBUG;%(PreprocessorDefinitions) + + + + + + NDEBUG;%(PreprocessorDefinitions) + + + + + + _DEBUG;%(PreprocessorDefinitions) + + + + + + NDEBUG;%(PreprocessorDefinitions) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/pcre/build-VS2015/libpcre32/libpcre32.vcxproj.filters b/pcre/build-VS2015/libpcre32/libpcre32.vcxproj.filters new file mode 100644 index 0000000..0a4840f --- /dev/null +++ b/pcre/build-VS2015/libpcre32/libpcre32.vcxproj.filters @@ -0,0 +1,110 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + {b5dc9e68-346a-4504-9659-a690a040ce29} + + + {068c00a7-cf63-4290-b296-987c627d2a4c} + + + + + Header Files\include + + + Header Files + + + Header Files + + + Header Files\win32 + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + + + Resource Files + + + \ No newline at end of file diff --git a/pcre/build-VS2015/libpcrecpp-static/libpcrecpp-static.vcxproj b/pcre/build-VS2015/libpcrecpp-static/libpcrecpp-static.vcxproj new file mode 100644 index 0000000..196ea91 --- /dev/null +++ b/pcre/build-VS2015/libpcrecpp-static/libpcrecpp-static.vcxproj @@ -0,0 +1,112 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {0CD436F0-29A0-441A-B448-1FDA9825EBE6} + libpcrecpp-static + + + + StaticLibrary + true + v140 + + + StaticLibrary + true + v140 + + + StaticLibrary + false + v140 + true + + + StaticLibrary + false + v140 + true + + + + + + + + + + + + + + + + + + + + + + + + + + + _DEBUG;%(PreprocessorDefinitions) + + + + + + NDEBUG;%(PreprocessorDefinitions) + + + + + + _DEBUG;%(PreprocessorDefinitions) + + + + + + NDEBUG;%(PreprocessorDefinitions) + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/pcre/build-VS2015/libpcrecpp-static/libpcrecpp-static.vcxproj.filters b/pcre/build-VS2015/libpcrecpp-static/libpcrecpp-static.vcxproj.filters new file mode 100644 index 0000000..92ae09c --- /dev/null +++ b/pcre/build-VS2015/libpcrecpp-static/libpcrecpp-static.vcxproj.filters @@ -0,0 +1,57 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + {b75470d5-b0a3-43f8-894f-8461ce5519d1} + + + {e924d9b8-9eb2-4b86-990f-e69970129132} + + + + + Header Files\include + + + Header Files\include + + + Header Files\include + + + Header Files + + + Header Files + + + Header Files + + + Header Files\win32 + + + + + Source Files + + + Source Files + + + Source Files + + + \ No newline at end of file diff --git a/pcre/build-VS2015/libpcrecpp/libpcrecpp.vcxproj b/pcre/build-VS2015/libpcrecpp/libpcrecpp.vcxproj new file mode 100644 index 0000000..ca56d77 --- /dev/null +++ b/pcre/build-VS2015/libpcrecpp/libpcrecpp.vcxproj @@ -0,0 +1,115 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {3C429F07-54B0-4A7A-86E3-0A29036A28DC} + libpcrecpp + + + + DynamicLibrary + true + v140 + + + DynamicLibrary + true + v140 + + + DynamicLibrary + false + v140 + true + + + DynamicLibrary + false + v140 + true + + + + + + + + + + + + + + + + + + + + + + + + + + + _DEBUG;%(PreprocessorDefinitions) + + + + + + NDEBUG;%(PreprocessorDefinitions) + + + + + + _DEBUG;%(PreprocessorDefinitions) + + + + + + NDEBUG;%(PreprocessorDefinitions) + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/pcre/build-VS2015/libpcrecpp/libpcrecpp.vcxproj.filters b/pcre/build-VS2015/libpcrecpp/libpcrecpp.vcxproj.filters new file mode 100644 index 0000000..b9ed491 --- /dev/null +++ b/pcre/build-VS2015/libpcrecpp/libpcrecpp.vcxproj.filters @@ -0,0 +1,62 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + {12866bae-96f9-4a27-a6ee-3e2bda3c5953} + + + {5245497d-8c0d-4996-b178-b0cc8e0c2af3} + + + + + Header Files\include + + + Header Files\include + + + Header Files\include + + + Header Files + + + Header Files + + + Header Files + + + Header Files\win32 + + + + + Source Files + + + Source Files + + + Source Files + + + + + Resource Files + + + \ No newline at end of file diff --git a/pcre/build-VS2015/libpcreposix-static/libpcreposix-static.vcxproj b/pcre/build-VS2015/libpcreposix-static/libpcreposix-static.vcxproj new file mode 100644 index 0000000..7c14c94 --- /dev/null +++ b/pcre/build-VS2015/libpcreposix-static/libpcreposix-static.vcxproj @@ -0,0 +1,108 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {DDF26693-559C-49A6-861C-87A14B9D2A7B} + libpcreposix-static + + + + StaticLibrary + true + v140 + + + StaticLibrary + true + v140 + + + StaticLibrary + false + v140 + true + + + StaticLibrary + false + v140 + true + + + + + + + + + + + + + + + + + + + + + + + + + + + _DEBUG;%(PreprocessorDefinitions) + + + + + + NDEBUG;%(PreprocessorDefinitions) + + + + + + _DEBUG;%(PreprocessorDefinitions) + + + + + + NDEBUG;%(PreprocessorDefinitions) + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/pcre/build-VS2015/libpcreposix-static/libpcreposix-static.vcxproj.filters b/pcre/build-VS2015/libpcreposix-static/libpcreposix-static.vcxproj.filters new file mode 100644 index 0000000..2bada88 --- /dev/null +++ b/pcre/build-VS2015/libpcreposix-static/libpcreposix-static.vcxproj.filters @@ -0,0 +1,45 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + {a6d76609-6c46-44e8-9edb-aae885a3a5a3} + + + {d551f526-4922-4ef7-9ba9-bc143f95ac85} + + + + + Header Files\include + + + Header Files + + + Header Files + + + Header Files + + + Header Files\win32 + + + + + Source Files + + + \ No newline at end of file diff --git a/pcre/build-VS2015/libpcreposix/libpcreposix.vcxproj b/pcre/build-VS2015/libpcreposix/libpcreposix.vcxproj new file mode 100644 index 0000000..4a16b9c --- /dev/null +++ b/pcre/build-VS2015/libpcreposix/libpcreposix.vcxproj @@ -0,0 +1,111 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {99DC6502-5AB1-4A52-9E5A-EA9E91EF86C7} + libpcreposix + + + + DynamicLibrary + true + v140 + + + DynamicLibrary + true + v140 + + + DynamicLibrary + false + v140 + true + + + DynamicLibrary + false + v140 + true + + + + + + + + + + + + + + + + + + + + + + + + + + + _DEBUG;%(PreprocessorDefinitions) + + + + + + NDEBUG;%(PreprocessorDefinitions) + + + + + + _DEBUG;%(PreprocessorDefinitions) + + + + + + NDEBUG;%(PreprocessorDefinitions) + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/pcre/build-VS2015/libpcreposix/libpcreposix.vcxproj.filters b/pcre/build-VS2015/libpcreposix/libpcreposix.vcxproj.filters new file mode 100644 index 0000000..2257f92 --- /dev/null +++ b/pcre/build-VS2015/libpcreposix/libpcreposix.vcxproj.filters @@ -0,0 +1,50 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + {d8cdc58d-00a7-4165-980f-6670628c1601} + + + {bbf07166-3578-4072-b94b-8e6423d08bdf} + + + + + Header Files\include + + + Header Files + + + Header Files + + + Header Files + + + Header Files\win32 + + + + + Source Files + + + + + Resource Files + + + \ No newline at end of file diff --git a/pcre/build-VS2015/pcre.sln b/pcre/build-VS2015/pcre.sln new file mode 100644 index 0000000..7d2fbef --- /dev/null +++ b/pcre/build-VS2015/pcre.sln @@ -0,0 +1,340 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 14 +VisualStudioVersion = 14.0.25420.1 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libpcre", "libpcre\libpcre.vcxproj", "{DA8CB038-FD70-44B5-8ADA-5E32CA9ECACE}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pcre_jit_test", "tests\pcre_jit_test\pcre_jit_test.vcxproj", "{056C59D4-CE8D-459D-B160-4986718B2FC7}" + ProjectSection(ProjectDependencies) = postProject + {99DC6502-5AB1-4A52-9E5A-EA9E91EF86C7} = {99DC6502-5AB1-4A52-9E5A-EA9E91EF86C7} + {3C429F07-54B0-4A7A-86E3-0A29036A28DC} = {3C429F07-54B0-4A7A-86E3-0A29036A28DC} + {DA8CB038-FD70-44B5-8ADA-5E32CA9ECACE} = {DA8CB038-FD70-44B5-8ADA-5E32CA9ECACE} + {94D92D6A-221A-486C-85CC-9D0BFFF1C20E} = {94D92D6A-221A-486C-85CC-9D0BFFF1C20E} + {8DE7AFAB-08EE-436E-BE84-62EA1DE99E4C} = {8DE7AFAB-08EE-436E-BE84-62EA1DE99E4C} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pcre_scanner_unittest", "tests\pcre_scanner_unittest\pcre_scanner_unittest.vcxproj", "{71A30509-C347-4515-89F9-8618F88039CB}" + ProjectSection(ProjectDependencies) = postProject + {99DC6502-5AB1-4A52-9E5A-EA9E91EF86C7} = {99DC6502-5AB1-4A52-9E5A-EA9E91EF86C7} + {3C429F07-54B0-4A7A-86E3-0A29036A28DC} = {3C429F07-54B0-4A7A-86E3-0A29036A28DC} + {DA8CB038-FD70-44B5-8ADA-5E32CA9ECACE} = {DA8CB038-FD70-44B5-8ADA-5E32CA9ECACE} + {94D92D6A-221A-486C-85CC-9D0BFFF1C20E} = {94D92D6A-221A-486C-85CC-9D0BFFF1C20E} + {8DE7AFAB-08EE-436E-BE84-62EA1DE99E4C} = {8DE7AFAB-08EE-436E-BE84-62EA1DE99E4C} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pcre_stringpiece_unittest", "tests\pcre_stringpiece_unittest\pcre_stringpiece_unittest.vcxproj", "{3A5A189F-11DA-4C93-9861-D47AE5D892FC}" + ProjectSection(ProjectDependencies) = postProject + {99DC6502-5AB1-4A52-9E5A-EA9E91EF86C7} = {99DC6502-5AB1-4A52-9E5A-EA9E91EF86C7} + {3C429F07-54B0-4A7A-86E3-0A29036A28DC} = {3C429F07-54B0-4A7A-86E3-0A29036A28DC} + {DA8CB038-FD70-44B5-8ADA-5E32CA9ECACE} = {DA8CB038-FD70-44B5-8ADA-5E32CA9ECACE} + {94D92D6A-221A-486C-85CC-9D0BFFF1C20E} = {94D92D6A-221A-486C-85CC-9D0BFFF1C20E} + {8DE7AFAB-08EE-436E-BE84-62EA1DE99E4C} = {8DE7AFAB-08EE-436E-BE84-62EA1DE99E4C} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libpcre16", "libpcre16\libpcre16.vcxproj", "{94D92D6A-221A-486C-85CC-9D0BFFF1C20E}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libpcre32", "libpcre32\libpcre32.vcxproj", "{8DE7AFAB-08EE-436E-BE84-62EA1DE99E4C}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libpcrecpp", "libpcrecpp\libpcrecpp.vcxproj", "{3C429F07-54B0-4A7A-86E3-0A29036A28DC}" + ProjectSection(ProjectDependencies) = postProject + {DA8CB038-FD70-44B5-8ADA-5E32CA9ECACE} = {DA8CB038-FD70-44B5-8ADA-5E32CA9ECACE} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pcrecpp_unittest", "tests\pcrecpp_unittest\pcrecpp_unittest.vcxproj", "{1667E2B6-ECEA-4BCE-9824-4E33C4899B72}" + ProjectSection(ProjectDependencies) = postProject + {99DC6502-5AB1-4A52-9E5A-EA9E91EF86C7} = {99DC6502-5AB1-4A52-9E5A-EA9E91EF86C7} + {3C429F07-54B0-4A7A-86E3-0A29036A28DC} = {3C429F07-54B0-4A7A-86E3-0A29036A28DC} + {DA8CB038-FD70-44B5-8ADA-5E32CA9ECACE} = {DA8CB038-FD70-44B5-8ADA-5E32CA9ECACE} + {94D92D6A-221A-486C-85CC-9D0BFFF1C20E} = {94D92D6A-221A-486C-85CC-9D0BFFF1C20E} + {8DE7AFAB-08EE-436E-BE84-62EA1DE99E4C} = {8DE7AFAB-08EE-436E-BE84-62EA1DE99E4C} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pcregrep", "pcregrep\pcregrep.vcxproj", "{80112543-88C9-4354-ADD1-B1A600D65217}" + ProjectSection(ProjectDependencies) = postProject + {DA8CB038-FD70-44B5-8ADA-5E32CA9ECACE} = {DA8CB038-FD70-44B5-8ADA-5E32CA9ECACE} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libpcreposix", "libpcreposix\libpcreposix.vcxproj", "{99DC6502-5AB1-4A52-9E5A-EA9E91EF86C7}" + ProjectSection(ProjectDependencies) = postProject + {DA8CB038-FD70-44B5-8ADA-5E32CA9ECACE} = {DA8CB038-FD70-44B5-8ADA-5E32CA9ECACE} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pcretest", "tests\pcretest\pcretest.vcxproj", "{B72C080E-F1E3-4CD4-9107-4871BAFF6183}" + ProjectSection(ProjectDependencies) = postProject + {99DC6502-5AB1-4A52-9E5A-EA9E91EF86C7} = {99DC6502-5AB1-4A52-9E5A-EA9E91EF86C7} + {3C429F07-54B0-4A7A-86E3-0A29036A28DC} = {3C429F07-54B0-4A7A-86E3-0A29036A28DC} + {DA8CB038-FD70-44B5-8ADA-5E32CA9ECACE} = {DA8CB038-FD70-44B5-8ADA-5E32CA9ECACE} + {94D92D6A-221A-486C-85CC-9D0BFFF1C20E} = {94D92D6A-221A-486C-85CC-9D0BFFF1C20E} + {8DE7AFAB-08EE-436E-BE84-62EA1DE99E4C} = {8DE7AFAB-08EE-436E-BE84-62EA1DE99E4C} + EndProjectSection +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{C292CA0F-C580-488A-B7CD-8DF1A0D2BEB4}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libpcre-static", "libpcre-static\libpcre-static.vcxproj", "{5E70CAAF-437F-4EC1-87F4-D896276AB1E1}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libpcre16-static", "libpcre16-static\libpcre16-static.vcxproj", "{A0964D8D-ED36-40CF-BEC8-E7D87457AA97}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libpcre32-static", "libpcre32-static\libpcre32-static.vcxproj", "{DDFDFF9B-08DB-4806-B66B-9A488E9891A7}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libpcrecpp-static", "libpcrecpp-static\libpcrecpp-static.vcxproj", "{0CD436F0-29A0-441A-B448-1FDA9825EBE6}" + ProjectSection(ProjectDependencies) = postProject + {5E70CAAF-437F-4EC1-87F4-D896276AB1E1} = {5E70CAAF-437F-4EC1-87F4-D896276AB1E1} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pcregrep-static", "pcregrep-static\pcregrep-static.vcxproj", "{98E90475-015E-4D21-BA6D-740ECFE28D54}" + ProjectSection(ProjectDependencies) = postProject + {5E70CAAF-437F-4EC1-87F4-D896276AB1E1} = {5E70CAAF-437F-4EC1-87F4-D896276AB1E1} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libpcreposix-static", "libpcreposix-static\libpcreposix-static.vcxproj", "{DDF26693-559C-49A6-861C-87A14B9D2A7B}" + ProjectSection(ProjectDependencies) = postProject + {5E70CAAF-437F-4EC1-87F4-D896276AB1E1} = {5E70CAAF-437F-4EC1-87F4-D896276AB1E1} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pcre_jit_test-static", "tests\pcre_jit_test-static\pcre_jit_test-static.vcxproj", "{5E117257-24E9-4EFA-9739-FE3A1BC81600}" + ProjectSection(ProjectDependencies) = postProject + {A0964D8D-ED36-40CF-BEC8-E7D87457AA97} = {A0964D8D-ED36-40CF-BEC8-E7D87457AA97} + {DDF26693-559C-49A6-861C-87A14B9D2A7B} = {DDF26693-559C-49A6-861C-87A14B9D2A7B} + {DDFDFF9B-08DB-4806-B66B-9A488E9891A7} = {DDFDFF9B-08DB-4806-B66B-9A488E9891A7} + {5E70CAAF-437F-4EC1-87F4-D896276AB1E1} = {5E70CAAF-437F-4EC1-87F4-D896276AB1E1} + {0CD436F0-29A0-441A-B448-1FDA9825EBE6} = {0CD436F0-29A0-441A-B448-1FDA9825EBE6} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pcre_scanner_unittest-static", "tests\pcre_scanner_unittest-static\pcre_scanner_unittest-static.vcxproj", "{EDD6C800-3D37-49EF-8115-B50FF1FB0688}" + ProjectSection(ProjectDependencies) = postProject + {A0964D8D-ED36-40CF-BEC8-E7D87457AA97} = {A0964D8D-ED36-40CF-BEC8-E7D87457AA97} + {DDF26693-559C-49A6-861C-87A14B9D2A7B} = {DDF26693-559C-49A6-861C-87A14B9D2A7B} + {DDFDFF9B-08DB-4806-B66B-9A488E9891A7} = {DDFDFF9B-08DB-4806-B66B-9A488E9891A7} + {5E70CAAF-437F-4EC1-87F4-D896276AB1E1} = {5E70CAAF-437F-4EC1-87F4-D896276AB1E1} + {0CD436F0-29A0-441A-B448-1FDA9825EBE6} = {0CD436F0-29A0-441A-B448-1FDA9825EBE6} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pcre_stringpiece_unittest-static", "tests\pcre_stringpiece_unittest-static\pcre_stringpiece_unittest-static.vcxproj", "{9C6C2694-D1FE-42DC-A128-D21A1C3E7E77}" + ProjectSection(ProjectDependencies) = postProject + {A0964D8D-ED36-40CF-BEC8-E7D87457AA97} = {A0964D8D-ED36-40CF-BEC8-E7D87457AA97} + {DDF26693-559C-49A6-861C-87A14B9D2A7B} = {DDF26693-559C-49A6-861C-87A14B9D2A7B} + {DDFDFF9B-08DB-4806-B66B-9A488E9891A7} = {DDFDFF9B-08DB-4806-B66B-9A488E9891A7} + {5E70CAAF-437F-4EC1-87F4-D896276AB1E1} = {5E70CAAF-437F-4EC1-87F4-D896276AB1E1} + {0CD436F0-29A0-441A-B448-1FDA9825EBE6} = {0CD436F0-29A0-441A-B448-1FDA9825EBE6} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pcrecpp_unittest-static", "tests\pcrecpp_unittest-static\pcrecpp_unittest-static.vcxproj", "{5BAF05ED-2A4A-4F0D-BB7C-E7F2D006C7A2}" + ProjectSection(ProjectDependencies) = postProject + {A0964D8D-ED36-40CF-BEC8-E7D87457AA97} = {A0964D8D-ED36-40CF-BEC8-E7D87457AA97} + {DDF26693-559C-49A6-861C-87A14B9D2A7B} = {DDF26693-559C-49A6-861C-87A14B9D2A7B} + {DDFDFF9B-08DB-4806-B66B-9A488E9891A7} = {DDFDFF9B-08DB-4806-B66B-9A488E9891A7} + {5E70CAAF-437F-4EC1-87F4-D896276AB1E1} = {5E70CAAF-437F-4EC1-87F4-D896276AB1E1} + {0CD436F0-29A0-441A-B448-1FDA9825EBE6} = {0CD436F0-29A0-441A-B448-1FDA9825EBE6} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pcretest-static", "tests\pcretest-static\pcretest-static.vcxproj", "{E3D8AC30-C48D-4522-B892-958B2475DDB5}" + ProjectSection(ProjectDependencies) = postProject + {A0964D8D-ED36-40CF-BEC8-E7D87457AA97} = {A0964D8D-ED36-40CF-BEC8-E7D87457AA97} + {DDF26693-559C-49A6-861C-87A14B9D2A7B} = {DDF26693-559C-49A6-861C-87A14B9D2A7B} + {DDFDFF9B-08DB-4806-B66B-9A488E9891A7} = {DDFDFF9B-08DB-4806-B66B-9A488E9891A7} + {5E70CAAF-437F-4EC1-87F4-D896276AB1E1} = {5E70CAAF-437F-4EC1-87F4-D896276AB1E1} + {0CD436F0-29A0-441A-B448-1FDA9825EBE6} = {0CD436F0-29A0-441A-B448-1FDA9825EBE6} + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Debug|x64 = Debug|x64 + Release|Win32 = Release|Win32 + Release|x64 = Release|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {DA8CB038-FD70-44B5-8ADA-5E32CA9ECACE}.Debug|Win32.ActiveCfg = Debug|Win32 + {DA8CB038-FD70-44B5-8ADA-5E32CA9ECACE}.Debug|Win32.Build.0 = Debug|Win32 + {DA8CB038-FD70-44B5-8ADA-5E32CA9ECACE}.Debug|x64.ActiveCfg = Debug|x64 + {DA8CB038-FD70-44B5-8ADA-5E32CA9ECACE}.Debug|x64.Build.0 = Debug|x64 + {DA8CB038-FD70-44B5-8ADA-5E32CA9ECACE}.Release|Win32.ActiveCfg = Release|Win32 + {DA8CB038-FD70-44B5-8ADA-5E32CA9ECACE}.Release|Win32.Build.0 = Release|Win32 + {DA8CB038-FD70-44B5-8ADA-5E32CA9ECACE}.Release|x64.ActiveCfg = Release|x64 + {DA8CB038-FD70-44B5-8ADA-5E32CA9ECACE}.Release|x64.Build.0 = Release|x64 + {056C59D4-CE8D-459D-B160-4986718B2FC7}.Debug|Win32.ActiveCfg = Debug|Win32 + {056C59D4-CE8D-459D-B160-4986718B2FC7}.Debug|Win32.Build.0 = Debug|Win32 + {056C59D4-CE8D-459D-B160-4986718B2FC7}.Debug|x64.ActiveCfg = Debug|x64 + {056C59D4-CE8D-459D-B160-4986718B2FC7}.Debug|x64.Build.0 = Debug|x64 + {056C59D4-CE8D-459D-B160-4986718B2FC7}.Release|Win32.ActiveCfg = Release|Win32 + {056C59D4-CE8D-459D-B160-4986718B2FC7}.Release|Win32.Build.0 = Release|Win32 + {056C59D4-CE8D-459D-B160-4986718B2FC7}.Release|x64.ActiveCfg = Release|x64 + {056C59D4-CE8D-459D-B160-4986718B2FC7}.Release|x64.Build.0 = Release|x64 + {71A30509-C347-4515-89F9-8618F88039CB}.Debug|Win32.ActiveCfg = Debug|Win32 + {71A30509-C347-4515-89F9-8618F88039CB}.Debug|Win32.Build.0 = Debug|Win32 + {71A30509-C347-4515-89F9-8618F88039CB}.Debug|x64.ActiveCfg = Debug|x64 + {71A30509-C347-4515-89F9-8618F88039CB}.Debug|x64.Build.0 = Debug|x64 + {71A30509-C347-4515-89F9-8618F88039CB}.Release|Win32.ActiveCfg = Release|Win32 + {71A30509-C347-4515-89F9-8618F88039CB}.Release|Win32.Build.0 = Release|Win32 + {71A30509-C347-4515-89F9-8618F88039CB}.Release|x64.ActiveCfg = Release|x64 + {71A30509-C347-4515-89F9-8618F88039CB}.Release|x64.Build.0 = Release|x64 + {3A5A189F-11DA-4C93-9861-D47AE5D892FC}.Debug|Win32.ActiveCfg = Debug|Win32 + {3A5A189F-11DA-4C93-9861-D47AE5D892FC}.Debug|Win32.Build.0 = Debug|Win32 + {3A5A189F-11DA-4C93-9861-D47AE5D892FC}.Debug|x64.ActiveCfg = Debug|x64 + {3A5A189F-11DA-4C93-9861-D47AE5D892FC}.Debug|x64.Build.0 = Debug|x64 + {3A5A189F-11DA-4C93-9861-D47AE5D892FC}.Release|Win32.ActiveCfg = Release|Win32 + {3A5A189F-11DA-4C93-9861-D47AE5D892FC}.Release|Win32.Build.0 = Release|Win32 + {3A5A189F-11DA-4C93-9861-D47AE5D892FC}.Release|x64.ActiveCfg = Release|x64 + {3A5A189F-11DA-4C93-9861-D47AE5D892FC}.Release|x64.Build.0 = Release|x64 + {94D92D6A-221A-486C-85CC-9D0BFFF1C20E}.Debug|Win32.ActiveCfg = Debug|Win32 + {94D92D6A-221A-486C-85CC-9D0BFFF1C20E}.Debug|Win32.Build.0 = Debug|Win32 + {94D92D6A-221A-486C-85CC-9D0BFFF1C20E}.Debug|x64.ActiveCfg = Debug|x64 + {94D92D6A-221A-486C-85CC-9D0BFFF1C20E}.Debug|x64.Build.0 = Debug|x64 + {94D92D6A-221A-486C-85CC-9D0BFFF1C20E}.Release|Win32.ActiveCfg = Release|Win32 + {94D92D6A-221A-486C-85CC-9D0BFFF1C20E}.Release|Win32.Build.0 = Release|Win32 + {94D92D6A-221A-486C-85CC-9D0BFFF1C20E}.Release|x64.ActiveCfg = Release|x64 + {94D92D6A-221A-486C-85CC-9D0BFFF1C20E}.Release|x64.Build.0 = Release|x64 + {8DE7AFAB-08EE-436E-BE84-62EA1DE99E4C}.Debug|Win32.ActiveCfg = Debug|Win32 + {8DE7AFAB-08EE-436E-BE84-62EA1DE99E4C}.Debug|Win32.Build.0 = Debug|Win32 + {8DE7AFAB-08EE-436E-BE84-62EA1DE99E4C}.Debug|x64.ActiveCfg = Debug|x64 + {8DE7AFAB-08EE-436E-BE84-62EA1DE99E4C}.Debug|x64.Build.0 = Debug|x64 + {8DE7AFAB-08EE-436E-BE84-62EA1DE99E4C}.Release|Win32.ActiveCfg = Release|Win32 + {8DE7AFAB-08EE-436E-BE84-62EA1DE99E4C}.Release|Win32.Build.0 = Release|Win32 + {8DE7AFAB-08EE-436E-BE84-62EA1DE99E4C}.Release|x64.ActiveCfg = Release|x64 + {8DE7AFAB-08EE-436E-BE84-62EA1DE99E4C}.Release|x64.Build.0 = Release|x64 + {3C429F07-54B0-4A7A-86E3-0A29036A28DC}.Debug|Win32.ActiveCfg = Debug|Win32 + {3C429F07-54B0-4A7A-86E3-0A29036A28DC}.Debug|Win32.Build.0 = Debug|Win32 + {3C429F07-54B0-4A7A-86E3-0A29036A28DC}.Debug|x64.ActiveCfg = Debug|x64 + {3C429F07-54B0-4A7A-86E3-0A29036A28DC}.Debug|x64.Build.0 = Debug|x64 + {3C429F07-54B0-4A7A-86E3-0A29036A28DC}.Release|Win32.ActiveCfg = Release|Win32 + {3C429F07-54B0-4A7A-86E3-0A29036A28DC}.Release|Win32.Build.0 = Release|Win32 + {3C429F07-54B0-4A7A-86E3-0A29036A28DC}.Release|x64.ActiveCfg = Release|x64 + {3C429F07-54B0-4A7A-86E3-0A29036A28DC}.Release|x64.Build.0 = Release|x64 + {1667E2B6-ECEA-4BCE-9824-4E33C4899B72}.Debug|Win32.ActiveCfg = Debug|Win32 + {1667E2B6-ECEA-4BCE-9824-4E33C4899B72}.Debug|Win32.Build.0 = Debug|Win32 + {1667E2B6-ECEA-4BCE-9824-4E33C4899B72}.Debug|x64.ActiveCfg = Debug|x64 + {1667E2B6-ECEA-4BCE-9824-4E33C4899B72}.Debug|x64.Build.0 = Debug|x64 + {1667E2B6-ECEA-4BCE-9824-4E33C4899B72}.Release|Win32.ActiveCfg = Release|Win32 + {1667E2B6-ECEA-4BCE-9824-4E33C4899B72}.Release|Win32.Build.0 = Release|Win32 + {1667E2B6-ECEA-4BCE-9824-4E33C4899B72}.Release|x64.ActiveCfg = Release|x64 + {1667E2B6-ECEA-4BCE-9824-4E33C4899B72}.Release|x64.Build.0 = Release|x64 + {80112543-88C9-4354-ADD1-B1A600D65217}.Debug|Win32.ActiveCfg = Debug|Win32 + {80112543-88C9-4354-ADD1-B1A600D65217}.Debug|Win32.Build.0 = Debug|Win32 + {80112543-88C9-4354-ADD1-B1A600D65217}.Debug|x64.ActiveCfg = Debug|x64 + {80112543-88C9-4354-ADD1-B1A600D65217}.Debug|x64.Build.0 = Debug|x64 + {80112543-88C9-4354-ADD1-B1A600D65217}.Release|Win32.ActiveCfg = Release|Win32 + {80112543-88C9-4354-ADD1-B1A600D65217}.Release|Win32.Build.0 = Release|Win32 + {80112543-88C9-4354-ADD1-B1A600D65217}.Release|x64.ActiveCfg = Release|x64 + {80112543-88C9-4354-ADD1-B1A600D65217}.Release|x64.Build.0 = Release|x64 + {99DC6502-5AB1-4A52-9E5A-EA9E91EF86C7}.Debug|Win32.ActiveCfg = Debug|Win32 + {99DC6502-5AB1-4A52-9E5A-EA9E91EF86C7}.Debug|Win32.Build.0 = Debug|Win32 + {99DC6502-5AB1-4A52-9E5A-EA9E91EF86C7}.Debug|x64.ActiveCfg = Debug|x64 + {99DC6502-5AB1-4A52-9E5A-EA9E91EF86C7}.Debug|x64.Build.0 = Debug|x64 + {99DC6502-5AB1-4A52-9E5A-EA9E91EF86C7}.Release|Win32.ActiveCfg = Release|Win32 + {99DC6502-5AB1-4A52-9E5A-EA9E91EF86C7}.Release|Win32.Build.0 = Release|Win32 + {99DC6502-5AB1-4A52-9E5A-EA9E91EF86C7}.Release|x64.ActiveCfg = Release|x64 + {99DC6502-5AB1-4A52-9E5A-EA9E91EF86C7}.Release|x64.Build.0 = Release|x64 + {B72C080E-F1E3-4CD4-9107-4871BAFF6183}.Debug|Win32.ActiveCfg = Debug|Win32 + {B72C080E-F1E3-4CD4-9107-4871BAFF6183}.Debug|Win32.Build.0 = Debug|Win32 + {B72C080E-F1E3-4CD4-9107-4871BAFF6183}.Debug|x64.ActiveCfg = Debug|x64 + {B72C080E-F1E3-4CD4-9107-4871BAFF6183}.Debug|x64.Build.0 = Debug|x64 + {B72C080E-F1E3-4CD4-9107-4871BAFF6183}.Release|Win32.ActiveCfg = Release|Win32 + {B72C080E-F1E3-4CD4-9107-4871BAFF6183}.Release|Win32.Build.0 = Release|Win32 + {B72C080E-F1E3-4CD4-9107-4871BAFF6183}.Release|x64.ActiveCfg = Release|x64 + {B72C080E-F1E3-4CD4-9107-4871BAFF6183}.Release|x64.Build.0 = Release|x64 + {5E70CAAF-437F-4EC1-87F4-D896276AB1E1}.Debug|Win32.ActiveCfg = Debug|Win32 + {5E70CAAF-437F-4EC1-87F4-D896276AB1E1}.Debug|Win32.Build.0 = Debug|Win32 + {5E70CAAF-437F-4EC1-87F4-D896276AB1E1}.Debug|x64.ActiveCfg = Debug|x64 + {5E70CAAF-437F-4EC1-87F4-D896276AB1E1}.Debug|x64.Build.0 = Debug|x64 + {5E70CAAF-437F-4EC1-87F4-D896276AB1E1}.Release|Win32.ActiveCfg = Release|Win32 + {5E70CAAF-437F-4EC1-87F4-D896276AB1E1}.Release|Win32.Build.0 = Release|Win32 + {5E70CAAF-437F-4EC1-87F4-D896276AB1E1}.Release|x64.ActiveCfg = Release|x64 + {5E70CAAF-437F-4EC1-87F4-D896276AB1E1}.Release|x64.Build.0 = Release|x64 + {A0964D8D-ED36-40CF-BEC8-E7D87457AA97}.Debug|Win32.ActiveCfg = Debug|Win32 + {A0964D8D-ED36-40CF-BEC8-E7D87457AA97}.Debug|Win32.Build.0 = Debug|Win32 + {A0964D8D-ED36-40CF-BEC8-E7D87457AA97}.Debug|x64.ActiveCfg = Debug|x64 + {A0964D8D-ED36-40CF-BEC8-E7D87457AA97}.Debug|x64.Build.0 = Debug|x64 + {A0964D8D-ED36-40CF-BEC8-E7D87457AA97}.Release|Win32.ActiveCfg = Release|Win32 + {A0964D8D-ED36-40CF-BEC8-E7D87457AA97}.Release|Win32.Build.0 = Release|Win32 + {A0964D8D-ED36-40CF-BEC8-E7D87457AA97}.Release|x64.ActiveCfg = Release|x64 + {A0964D8D-ED36-40CF-BEC8-E7D87457AA97}.Release|x64.Build.0 = Release|x64 + {DDFDFF9B-08DB-4806-B66B-9A488E9891A7}.Debug|Win32.ActiveCfg = Debug|Win32 + {DDFDFF9B-08DB-4806-B66B-9A488E9891A7}.Debug|Win32.Build.0 = Debug|Win32 + {DDFDFF9B-08DB-4806-B66B-9A488E9891A7}.Debug|x64.ActiveCfg = Debug|x64 + {DDFDFF9B-08DB-4806-B66B-9A488E9891A7}.Debug|x64.Build.0 = Debug|x64 + {DDFDFF9B-08DB-4806-B66B-9A488E9891A7}.Release|Win32.ActiveCfg = Release|Win32 + {DDFDFF9B-08DB-4806-B66B-9A488E9891A7}.Release|Win32.Build.0 = Release|Win32 + {DDFDFF9B-08DB-4806-B66B-9A488E9891A7}.Release|x64.ActiveCfg = Release|x64 + {DDFDFF9B-08DB-4806-B66B-9A488E9891A7}.Release|x64.Build.0 = Release|x64 + {0CD436F0-29A0-441A-B448-1FDA9825EBE6}.Debug|Win32.ActiveCfg = Debug|Win32 + {0CD436F0-29A0-441A-B448-1FDA9825EBE6}.Debug|Win32.Build.0 = Debug|Win32 + {0CD436F0-29A0-441A-B448-1FDA9825EBE6}.Debug|x64.ActiveCfg = Debug|x64 + {0CD436F0-29A0-441A-B448-1FDA9825EBE6}.Debug|x64.Build.0 = Debug|x64 + {0CD436F0-29A0-441A-B448-1FDA9825EBE6}.Release|Win32.ActiveCfg = Release|Win32 + {0CD436F0-29A0-441A-B448-1FDA9825EBE6}.Release|Win32.Build.0 = Release|Win32 + {0CD436F0-29A0-441A-B448-1FDA9825EBE6}.Release|x64.ActiveCfg = Release|x64 + {0CD436F0-29A0-441A-B448-1FDA9825EBE6}.Release|x64.Build.0 = Release|x64 + {98E90475-015E-4D21-BA6D-740ECFE28D54}.Debug|Win32.ActiveCfg = Debug|Win32 + {98E90475-015E-4D21-BA6D-740ECFE28D54}.Debug|Win32.Build.0 = Debug|Win32 + {98E90475-015E-4D21-BA6D-740ECFE28D54}.Debug|x64.ActiveCfg = Debug|x64 + {98E90475-015E-4D21-BA6D-740ECFE28D54}.Debug|x64.Build.0 = Debug|x64 + {98E90475-015E-4D21-BA6D-740ECFE28D54}.Release|Win32.ActiveCfg = Release|Win32 + {98E90475-015E-4D21-BA6D-740ECFE28D54}.Release|Win32.Build.0 = Release|Win32 + {98E90475-015E-4D21-BA6D-740ECFE28D54}.Release|x64.ActiveCfg = Release|x64 + {98E90475-015E-4D21-BA6D-740ECFE28D54}.Release|x64.Build.0 = Release|x64 + {DDF26693-559C-49A6-861C-87A14B9D2A7B}.Debug|Win32.ActiveCfg = Debug|Win32 + {DDF26693-559C-49A6-861C-87A14B9D2A7B}.Debug|Win32.Build.0 = Debug|Win32 + {DDF26693-559C-49A6-861C-87A14B9D2A7B}.Debug|x64.ActiveCfg = Debug|x64 + {DDF26693-559C-49A6-861C-87A14B9D2A7B}.Debug|x64.Build.0 = Debug|x64 + {DDF26693-559C-49A6-861C-87A14B9D2A7B}.Release|Win32.ActiveCfg = Release|Win32 + {DDF26693-559C-49A6-861C-87A14B9D2A7B}.Release|Win32.Build.0 = Release|Win32 + {DDF26693-559C-49A6-861C-87A14B9D2A7B}.Release|x64.ActiveCfg = Release|x64 + {DDF26693-559C-49A6-861C-87A14B9D2A7B}.Release|x64.Build.0 = Release|x64 + {5E117257-24E9-4EFA-9739-FE3A1BC81600}.Debug|Win32.ActiveCfg = Debug|Win32 + {5E117257-24E9-4EFA-9739-FE3A1BC81600}.Debug|Win32.Build.0 = Debug|Win32 + {5E117257-24E9-4EFA-9739-FE3A1BC81600}.Debug|x64.ActiveCfg = Debug|x64 + {5E117257-24E9-4EFA-9739-FE3A1BC81600}.Debug|x64.Build.0 = Debug|x64 + {5E117257-24E9-4EFA-9739-FE3A1BC81600}.Release|Win32.ActiveCfg = Release|Win32 + {5E117257-24E9-4EFA-9739-FE3A1BC81600}.Release|Win32.Build.0 = Release|Win32 + {5E117257-24E9-4EFA-9739-FE3A1BC81600}.Release|x64.ActiveCfg = Release|x64 + {5E117257-24E9-4EFA-9739-FE3A1BC81600}.Release|x64.Build.0 = Release|x64 + {EDD6C800-3D37-49EF-8115-B50FF1FB0688}.Debug|Win32.ActiveCfg = Debug|Win32 + {EDD6C800-3D37-49EF-8115-B50FF1FB0688}.Debug|Win32.Build.0 = Debug|Win32 + {EDD6C800-3D37-49EF-8115-B50FF1FB0688}.Debug|x64.ActiveCfg = Debug|x64 + {EDD6C800-3D37-49EF-8115-B50FF1FB0688}.Debug|x64.Build.0 = Debug|x64 + {EDD6C800-3D37-49EF-8115-B50FF1FB0688}.Release|Win32.ActiveCfg = Release|Win32 + {EDD6C800-3D37-49EF-8115-B50FF1FB0688}.Release|Win32.Build.0 = Release|Win32 + {EDD6C800-3D37-49EF-8115-B50FF1FB0688}.Release|x64.ActiveCfg = Release|x64 + {EDD6C800-3D37-49EF-8115-B50FF1FB0688}.Release|x64.Build.0 = Release|x64 + {9C6C2694-D1FE-42DC-A128-D21A1C3E7E77}.Debug|Win32.ActiveCfg = Debug|Win32 + {9C6C2694-D1FE-42DC-A128-D21A1C3E7E77}.Debug|Win32.Build.0 = Debug|Win32 + {9C6C2694-D1FE-42DC-A128-D21A1C3E7E77}.Debug|x64.ActiveCfg = Debug|x64 + {9C6C2694-D1FE-42DC-A128-D21A1C3E7E77}.Debug|x64.Build.0 = Debug|x64 + {9C6C2694-D1FE-42DC-A128-D21A1C3E7E77}.Release|Win32.ActiveCfg = Release|Win32 + {9C6C2694-D1FE-42DC-A128-D21A1C3E7E77}.Release|Win32.Build.0 = Release|Win32 + {9C6C2694-D1FE-42DC-A128-D21A1C3E7E77}.Release|x64.ActiveCfg = Release|x64 + {9C6C2694-D1FE-42DC-A128-D21A1C3E7E77}.Release|x64.Build.0 = Release|x64 + {5BAF05ED-2A4A-4F0D-BB7C-E7F2D006C7A2}.Debug|Win32.ActiveCfg = Debug|Win32 + {5BAF05ED-2A4A-4F0D-BB7C-E7F2D006C7A2}.Debug|Win32.Build.0 = Debug|Win32 + {5BAF05ED-2A4A-4F0D-BB7C-E7F2D006C7A2}.Debug|x64.ActiveCfg = Debug|x64 + {5BAF05ED-2A4A-4F0D-BB7C-E7F2D006C7A2}.Debug|x64.Build.0 = Debug|x64 + {5BAF05ED-2A4A-4F0D-BB7C-E7F2D006C7A2}.Release|Win32.ActiveCfg = Release|Win32 + {5BAF05ED-2A4A-4F0D-BB7C-E7F2D006C7A2}.Release|Win32.Build.0 = Release|Win32 + {5BAF05ED-2A4A-4F0D-BB7C-E7F2D006C7A2}.Release|x64.ActiveCfg = Release|x64 + {5BAF05ED-2A4A-4F0D-BB7C-E7F2D006C7A2}.Release|x64.Build.0 = Release|x64 + {E3D8AC30-C48D-4522-B892-958B2475DDB5}.Debug|Win32.ActiveCfg = Debug|Win32 + {E3D8AC30-C48D-4522-B892-958B2475DDB5}.Debug|Win32.Build.0 = Debug|Win32 + {E3D8AC30-C48D-4522-B892-958B2475DDB5}.Debug|x64.ActiveCfg = Debug|x64 + {E3D8AC30-C48D-4522-B892-958B2475DDB5}.Debug|x64.Build.0 = Debug|x64 + {E3D8AC30-C48D-4522-B892-958B2475DDB5}.Release|Win32.ActiveCfg = Release|Win32 + {E3D8AC30-C48D-4522-B892-958B2475DDB5}.Release|Win32.Build.0 = Release|Win32 + {E3D8AC30-C48D-4522-B892-958B2475DDB5}.Release|x64.ActiveCfg = Release|x64 + {E3D8AC30-C48D-4522-B892-958B2475DDB5}.Release|x64.Build.0 = Release|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(NestedProjects) = preSolution + {056C59D4-CE8D-459D-B160-4986718B2FC7} = {C292CA0F-C580-488A-B7CD-8DF1A0D2BEB4} + {71A30509-C347-4515-89F9-8618F88039CB} = {C292CA0F-C580-488A-B7CD-8DF1A0D2BEB4} + {3A5A189F-11DA-4C93-9861-D47AE5D892FC} = {C292CA0F-C580-488A-B7CD-8DF1A0D2BEB4} + {1667E2B6-ECEA-4BCE-9824-4E33C4899B72} = {C292CA0F-C580-488A-B7CD-8DF1A0D2BEB4} + {B72C080E-F1E3-4CD4-9107-4871BAFF6183} = {C292CA0F-C580-488A-B7CD-8DF1A0D2BEB4} + {5E117257-24E9-4EFA-9739-FE3A1BC81600} = {C292CA0F-C580-488A-B7CD-8DF1A0D2BEB4} + {EDD6C800-3D37-49EF-8115-B50FF1FB0688} = {C292CA0F-C580-488A-B7CD-8DF1A0D2BEB4} + {9C6C2694-D1FE-42DC-A128-D21A1C3E7E77} = {C292CA0F-C580-488A-B7CD-8DF1A0D2BEB4} + {5BAF05ED-2A4A-4F0D-BB7C-E7F2D006C7A2} = {C292CA0F-C580-488A-B7CD-8DF1A0D2BEB4} + {E3D8AC30-C48D-4522-B892-958B2475DDB5} = {C292CA0F-C580-488A-B7CD-8DF1A0D2BEB4} + EndGlobalSection +EndGlobal diff --git a/pcre/build-VS2015/pcregrep-static/pcregrep-static.vcxproj b/pcre/build-VS2015/pcregrep-static/pcregrep-static.vcxproj new file mode 100644 index 0000000..e762bb1 --- /dev/null +++ b/pcre/build-VS2015/pcregrep-static/pcregrep-static.vcxproj @@ -0,0 +1,108 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {98E90475-015E-4D21-BA6D-740ECFE28D54} + pcregrep-static + + + + Application + true + v140 + + + Application + true + v140 + + + Application + false + v140 + true + + + Application + false + v140 + true + + + + + + + + + + + + + + + + + + + + + + + + + + + _DEBUG;%(PreprocessorDefinitions) + + + + + + NDEBUG;%(PreprocessorDefinitions) + + + + + + _DEBUG;%(PreprocessorDefinitions) + + + + + + NDEBUG;%(PreprocessorDefinitions) + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/pcre/build-VS2015/pcregrep-static/pcregrep-static.vcxproj.filters b/pcre/build-VS2015/pcregrep-static/pcregrep-static.vcxproj.filters new file mode 100644 index 0000000..59f95d5 --- /dev/null +++ b/pcre/build-VS2015/pcregrep-static/pcregrep-static.vcxproj.filters @@ -0,0 +1,41 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + {27005355-b8fc-4583-8b62-53cf1a8a0e94} + + + {5b1afa41-272e-44db-bb09-37f5dc9f6c2d} + + + + + Header Files\include + + + Header Files\win32 + + + + + Source Files + + + + + Resource Files + + + \ No newline at end of file diff --git a/pcre/build-VS2015/pcregrep/pcregrep.vcxproj b/pcre/build-VS2015/pcregrep/pcregrep.vcxproj new file mode 100644 index 0000000..64c5b31 --- /dev/null +++ b/pcre/build-VS2015/pcregrep/pcregrep.vcxproj @@ -0,0 +1,108 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {80112543-88C9-4354-ADD1-B1A600D65217} + pcregrep + + + + Application + true + v140 + + + Application + true + v140 + + + Application + false + v140 + true + + + Application + false + v140 + true + + + + + + + + + + + + + + + + + + + + + + + + + + + _DEBUG;%(PreprocessorDefinitions) + + + + + + NDEBUG;%(PreprocessorDefinitions) + + + + + + _DEBUG;%(PreprocessorDefinitions) + + + + + + NDEBUG;%(PreprocessorDefinitions) + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/pcre/build-VS2015/pcregrep/pcregrep.vcxproj.filters b/pcre/build-VS2015/pcregrep/pcregrep.vcxproj.filters new file mode 100644 index 0000000..21d15cf --- /dev/null +++ b/pcre/build-VS2015/pcregrep/pcregrep.vcxproj.filters @@ -0,0 +1,41 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + {be467843-2e63-43af-89fa-112e1aba603b} + + + {42343d9e-d016-4845-acfd-4c2452a56dbc} + + + + + Header Files\include + + + Header Files\win32 + + + + + Source Files + + + + + Resource Files + + + \ No newline at end of file diff --git a/pcre/build-VS2015/tests/pcre_jit_test-static/pcre_jit_test-static.vcxproj b/pcre/build-VS2015/tests/pcre_jit_test-static/pcre_jit_test-static.vcxproj new file mode 100644 index 0000000..9db9896 --- /dev/null +++ b/pcre/build-VS2015/tests/pcre_jit_test-static/pcre_jit_test-static.vcxproj @@ -0,0 +1,107 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {5E117257-24E9-4EFA-9739-FE3A1BC81600} + pcre_jit_test-static + + + + Application + true + v140 + + + Application + true + v140 + + + Application + false + v140 + true + + + Application + false + v140 + true + + + + + + + + + + + + + + + + + + + + + + + + + + + _DEBUG;%(PreprocessorDefinitions) + + + + + + NDEBUG;%(PreprocessorDefinitions) + + + + + + _DEBUG;%(PreprocessorDefinitions) + + + + + + NDEBUG;%(PreprocessorDefinitions) + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/pcre/build-VS2015/tests/pcre_jit_test-static/pcre_jit_test-static.vcxproj.filters b/pcre/build-VS2015/tests/pcre_jit_test-static/pcre_jit_test-static.vcxproj.filters new file mode 100644 index 0000000..cb6f034 --- /dev/null +++ b/pcre/build-VS2015/tests/pcre_jit_test-static/pcre_jit_test-static.vcxproj.filters @@ -0,0 +1,42 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + {eaa79662-3c06-4454-9042-e57b559416f0} + + + {1fcc25ba-2843-4114-8133-90cdddd51a91} + + + + + Header Files\include + + + Header Files + + + Header Files + + + Header Files\win32 + + + + + Source Files + + + \ No newline at end of file diff --git a/pcre/build-VS2015/tests/pcre_jit_test/pcre_jit_test.vcxproj b/pcre/build-VS2015/tests/pcre_jit_test/pcre_jit_test.vcxproj new file mode 100644 index 0000000..ac0a084 --- /dev/null +++ b/pcre/build-VS2015/tests/pcre_jit_test/pcre_jit_test.vcxproj @@ -0,0 +1,107 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {056C59D4-CE8D-459D-B160-4986718B2FC7} + pcre_jit_test + + + + Application + true + v140 + + + Application + true + v140 + + + Application + false + v140 + true + + + Application + false + v140 + true + + + + + + + + + + + + + + + + + + + + + + + + + + + _DEBUG;%(PreprocessorDefinitions) + + + + + + NDEBUG;%(PreprocessorDefinitions) + + + + + + _DEBUG;%(PreprocessorDefinitions) + + + + + + NDEBUG;%(PreprocessorDefinitions) + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/pcre/build-VS2015/tests/pcre_jit_test/pcre_jit_test.vcxproj.filters b/pcre/build-VS2015/tests/pcre_jit_test/pcre_jit_test.vcxproj.filters new file mode 100644 index 0000000..655dbed --- /dev/null +++ b/pcre/build-VS2015/tests/pcre_jit_test/pcre_jit_test.vcxproj.filters @@ -0,0 +1,42 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + {a99e7275-6111-41a0-be3f-cd415774ef7a} + + + {bc540497-c3d9-43ae-81b7-a6ee666e4685} + + + + + Header Files\include + + + Header Files + + + Header Files + + + Header Files\win32 + + + + + Source Files + + + \ No newline at end of file diff --git a/pcre/build-VS2015/tests/pcre_scanner_unittest-static/pcre_scanner_unittest-static.vcxproj b/pcre/build-VS2015/tests/pcre_scanner_unittest-static/pcre_scanner_unittest-static.vcxproj new file mode 100644 index 0000000..b789288 --- /dev/null +++ b/pcre/build-VS2015/tests/pcre_scanner_unittest-static/pcre_scanner_unittest-static.vcxproj @@ -0,0 +1,109 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {EDD6C800-3D37-49EF-8115-B50FF1FB0688} + pcre_scanner_unittest-static + + + + Application + true + v140 + + + Application + true + v140 + + + Application + false + v140 + true + + + Application + false + v140 + true + + + + + + + + + + + + + + + + + + + + + + + + + + + _DEBUG;%(PreprocessorDefinitions) + + + + + + NDEBUG;%(PreprocessorDefinitions) + + + + + + _DEBUG;%(PreprocessorDefinitions) + + + + + + NDEBUG;%(PreprocessorDefinitions) + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/pcre/build-VS2015/tests/pcre_scanner_unittest-static/pcre_scanner_unittest-static.vcxproj.filters b/pcre/build-VS2015/tests/pcre_scanner_unittest-static/pcre_scanner_unittest-static.vcxproj.filters new file mode 100644 index 0000000..fb8f28f --- /dev/null +++ b/pcre/build-VS2015/tests/pcre_scanner_unittest-static/pcre_scanner_unittest-static.vcxproj.filters @@ -0,0 +1,48 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + {55238480-c7a6-4457-a2a8-7b99a8d21704} + + + {28114554-46b9-46fc-8e62-f474c0249684} + + + + + Header Files\include + + + Header Files\include + + + Header Files\include + + + Header Files + + + Header Files + + + Header Files\win32 + + + + + Source Files + + + \ No newline at end of file diff --git a/pcre/build-VS2015/tests/pcre_scanner_unittest/pcre_scanner_unittest.vcxproj b/pcre/build-VS2015/tests/pcre_scanner_unittest/pcre_scanner_unittest.vcxproj new file mode 100644 index 0000000..b99f269 --- /dev/null +++ b/pcre/build-VS2015/tests/pcre_scanner_unittest/pcre_scanner_unittest.vcxproj @@ -0,0 +1,109 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {71A30509-C347-4515-89F9-8618F88039CB} + pcre_scanner_unittest + + + + Application + true + v140 + + + Application + true + v140 + + + Application + false + v140 + true + + + Application + false + v140 + true + + + + + + + + + + + + + + + + + + + + + + + + + + + _DEBUG;%(PreprocessorDefinitions) + + + + + + NDEBUG;%(PreprocessorDefinitions) + + + + + + _DEBUG;%(PreprocessorDefinitions) + + + + + + NDEBUG;%(PreprocessorDefinitions) + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/pcre/build-VS2015/tests/pcre_scanner_unittest/pcre_scanner_unittest.vcxproj.filters b/pcre/build-VS2015/tests/pcre_scanner_unittest/pcre_scanner_unittest.vcxproj.filters new file mode 100644 index 0000000..85ca986 --- /dev/null +++ b/pcre/build-VS2015/tests/pcre_scanner_unittest/pcre_scanner_unittest.vcxproj.filters @@ -0,0 +1,48 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + {e2922893-4ff3-4779-bb0a-df6d72b28d1a} + + + {84b1cf3a-3fee-4ea6-97cb-3514b9d2e0aa} + + + + + Header Files\include + + + Header Files\include + + + Header Files\include + + + Header Files + + + Header Files + + + Header Files\win32 + + + + + Source Files + + + \ No newline at end of file diff --git a/pcre/build-VS2015/tests/pcre_stringpiece_unittest-static/pcre_stringpiece_unittest-static.vcxproj b/pcre/build-VS2015/tests/pcre_stringpiece_unittest-static/pcre_stringpiece_unittest-static.vcxproj new file mode 100644 index 0000000..e59df0f --- /dev/null +++ b/pcre/build-VS2015/tests/pcre_stringpiece_unittest-static/pcre_stringpiece_unittest-static.vcxproj @@ -0,0 +1,108 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {9C6C2694-D1FE-42DC-A128-D21A1C3E7E77} + pcre_stringpiece_unittest-static + + + + Application + true + v140 + + + Application + true + v140 + + + Application + false + v140 + true + + + Application + false + v140 + true + + + + + + + + + + + + + + + + + + + + + + + + + + + _DEBUG;%(PreprocessorDefinitions) + + + + + + NDEBUG;%(PreprocessorDefinitions) + + + + + + _DEBUG;%(PreprocessorDefinitions) + + + + + + NDEBUG;%(PreprocessorDefinitions) + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/pcre/build-VS2015/tests/pcre_stringpiece_unittest-static/pcre_stringpiece_unittest-static.vcxproj.filters b/pcre/build-VS2015/tests/pcre_stringpiece_unittest-static/pcre_stringpiece_unittest-static.vcxproj.filters new file mode 100644 index 0000000..bdac8e4 --- /dev/null +++ b/pcre/build-VS2015/tests/pcre_stringpiece_unittest-static/pcre_stringpiece_unittest-static.vcxproj.filters @@ -0,0 +1,45 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + {3cb15f1a-fda9-43dd-bd1d-f2d7c14aa33f} + + + {eb602eed-82d3-44a3-9536-504a854d0f36} + + + + + Header Files\include + + + Header Files\include + + + Header Files\include + + + Header Files + + + Header Files\win32 + + + + + Source Files + + + \ No newline at end of file diff --git a/pcre/build-VS2015/tests/pcre_stringpiece_unittest/pcre_stringpiece_unittest.vcxproj b/pcre/build-VS2015/tests/pcre_stringpiece_unittest/pcre_stringpiece_unittest.vcxproj new file mode 100644 index 0000000..a102383 --- /dev/null +++ b/pcre/build-VS2015/tests/pcre_stringpiece_unittest/pcre_stringpiece_unittest.vcxproj @@ -0,0 +1,108 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {3A5A189F-11DA-4C93-9861-D47AE5D892FC} + pcre_stringpiece_unittest + + + + Application + true + v140 + + + Application + true + v140 + + + Application + false + v140 + true + + + Application + false + v140 + true + + + + + + + + + + + + + + + + + + + + + + + + + + + _DEBUG;%(PreprocessorDefinitions) + + + + + + NDEBUG;%(PreprocessorDefinitions) + + + + + + _DEBUG;%(PreprocessorDefinitions) + + + + + + NDEBUG;%(PreprocessorDefinitions) + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/pcre/build-VS2015/tests/pcre_stringpiece_unittest/pcre_stringpiece_unittest.vcxproj.filters b/pcre/build-VS2015/tests/pcre_stringpiece_unittest/pcre_stringpiece_unittest.vcxproj.filters new file mode 100644 index 0000000..c153632 --- /dev/null +++ b/pcre/build-VS2015/tests/pcre_stringpiece_unittest/pcre_stringpiece_unittest.vcxproj.filters @@ -0,0 +1,45 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + {1546a42e-2d8c-4998-b4db-afb8416df7a8} + + + {0d3aaaeb-4a58-4f68-b7f5-9ae1a6620c83} + + + + + Header Files\include + + + Header Files\include + + + Header Files\include + + + Header Files + + + Header Files\win32 + + + + + Source Files + + + \ No newline at end of file diff --git a/pcre/build-VS2015/tests/pcrecpp_unittest-static/pcrecpp_unittest-static.vcxproj b/pcre/build-VS2015/tests/pcrecpp_unittest-static/pcrecpp_unittest-static.vcxproj new file mode 100644 index 0000000..1d6f364 --- /dev/null +++ b/pcre/build-VS2015/tests/pcrecpp_unittest-static/pcrecpp_unittest-static.vcxproj @@ -0,0 +1,108 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {5BAF05ED-2A4A-4F0D-BB7C-E7F2D006C7A2} + pcrecpp_unittest-static + + + + Application + true + v140 + + + Application + true + v140 + + + Application + false + v140 + true + + + Application + false + v140 + true + + + + + + + + + + + + + + + + + + + + + + + + + + + _DEBUG;%(PreprocessorDefinitions) + + + + + + NDEBUG;%(PreprocessorDefinitions) + + + + + + _DEBUG;%(PreprocessorDefinitions) + + + + + + NDEBUG;%(PreprocessorDefinitions) + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/pcre/build-VS2015/tests/pcrecpp_unittest-static/pcrecpp_unittest-static.vcxproj.filters b/pcre/build-VS2015/tests/pcrecpp_unittest-static/pcrecpp_unittest-static.vcxproj.filters new file mode 100644 index 0000000..cca0706 --- /dev/null +++ b/pcre/build-VS2015/tests/pcrecpp_unittest-static/pcrecpp_unittest-static.vcxproj.filters @@ -0,0 +1,45 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + {4219c323-c56a-4cfd-8d72-586c795d7811} + + + {a5911583-27ba-4f41-b8a9-025e5a68a8d5} + + + + + Header Files\include + + + Header Files\include + + + Header Files\include + + + Header Files + + + Header Files\win32 + + + + + Source Files + + + \ No newline at end of file diff --git a/pcre/build-VS2015/tests/pcrecpp_unittest/pcrecpp_unittest.vcxproj b/pcre/build-VS2015/tests/pcrecpp_unittest/pcrecpp_unittest.vcxproj new file mode 100644 index 0000000..164b6f2 --- /dev/null +++ b/pcre/build-VS2015/tests/pcrecpp_unittest/pcrecpp_unittest.vcxproj @@ -0,0 +1,108 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {1667E2B6-ECEA-4BCE-9824-4E33C4899B72} + pcrecpp_unittest + + + + Application + true + v140 + + + Application + true + v140 + + + Application + false + v140 + true + + + Application + false + v140 + true + + + + + + + + + + + + + + + + + + + + + + + + + + + _DEBUG;%(PreprocessorDefinitions) + + + + + + NDEBUG;%(PreprocessorDefinitions) + + + + + + _DEBUG;%(PreprocessorDefinitions) + + + + + + NDEBUG;%(PreprocessorDefinitions) + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/pcre/build-VS2015/tests/pcrecpp_unittest/pcrecpp_unittest.vcxproj.filters b/pcre/build-VS2015/tests/pcrecpp_unittest/pcrecpp_unittest.vcxproj.filters new file mode 100644 index 0000000..eab65f0 --- /dev/null +++ b/pcre/build-VS2015/tests/pcrecpp_unittest/pcrecpp_unittest.vcxproj.filters @@ -0,0 +1,45 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + {572f8495-e57e-430b-93b2-80161a159119} + + + {5e8a66d9-4a6f-44d1-bf16-d6037793cf5e} + + + + + Header Files\include + + + Header Files\include + + + Header Files\include + + + Header Files + + + Header Files\win32 + + + + + Source Files + + + \ No newline at end of file diff --git a/pcre/build-VS2015/tests/pcretest-static/pcretest-static.vcxproj b/pcre/build-VS2015/tests/pcretest-static/pcretest-static.vcxproj new file mode 100644 index 0000000..9516cf2 --- /dev/null +++ b/pcre/build-VS2015/tests/pcretest-static/pcretest-static.vcxproj @@ -0,0 +1,118 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {E3D8AC30-C48D-4522-B892-958B2475DDB5} + pcretest-static + + + + Application + true + v140 + + + Application + true + v140 + + + Application + false + v140 + true + + + Application + false + v140 + true + + + + + + + + + + + + + + + + + + + + + + + + + + + _DEBUG;%(PreprocessorDefinitions) + + + 40000000 + + + + + NDEBUG;%(PreprocessorDefinitions) + + + 10000000 + + + + + _DEBUG;%(PreprocessorDefinitions) + + + 40000000 + + + + + NDEBUG;%(PreprocessorDefinitions) + + + 10000000 + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/pcre/build-VS2015/tests/pcretest-static/pcretest-static.vcxproj.filters b/pcre/build-VS2015/tests/pcretest-static/pcretest-static.vcxproj.filters new file mode 100644 index 0000000..e2a10ff --- /dev/null +++ b/pcre/build-VS2015/tests/pcretest-static/pcretest-static.vcxproj.filters @@ -0,0 +1,51 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + {7f89eedc-0232-4523-9fb9-dbbada4a02d0} + + + {ee13d700-1ddb-413d-89d9-c7368445471d} + + + + + Header Files\include + + + Header Files + + + Header Files + + + Header Files\win32 + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + \ No newline at end of file diff --git a/pcre/build-VS2015/tests/pcretest/pcretest.vcxproj b/pcre/build-VS2015/tests/pcretest/pcretest.vcxproj new file mode 100644 index 0000000..6c6114c --- /dev/null +++ b/pcre/build-VS2015/tests/pcretest/pcretest.vcxproj @@ -0,0 +1,118 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {B72C080E-F1E3-4CD4-9107-4871BAFF6183} + pcretest + + + + Application + true + v140 + + + Application + true + v140 + + + Application + false + v140 + true + + + Application + false + v140 + true + + + + + + + + + + + + + + + + + + + + + + + + + + + _DEBUG;%(PreprocessorDefinitions) + + + 40000000 + + + + + NDEBUG;%(PreprocessorDefinitions) + + + 10000000 + + + + + _DEBUG;%(PreprocessorDefinitions) + + + 40000000 + + + + + NDEBUG;%(PreprocessorDefinitions) + + + 10000000 + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/pcre/build-VS2015/tests/pcretest/pcretest.vcxproj.filters b/pcre/build-VS2015/tests/pcretest/pcretest.vcxproj.filters new file mode 100644 index 0000000..26a7ac3 --- /dev/null +++ b/pcre/build-VS2015/tests/pcretest/pcretest.vcxproj.filters @@ -0,0 +1,51 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + {69d6c170-53ad-4b05-8855-05ad8b668678} + + + {a6dcd341-7fb6-4324-a336-c8be9fad723f} + + + + + Header Files\include + + + Header Files + + + Header Files + + + Header Files\win32 + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + \ No newline at end of file -- cgit v1.1