From 2ce14cafb50e409ed1f7b93e57d08b8269278783 Mon Sep 17 00:00:00 2001 From: Guenter Obiltschnig Date: Fri, 20 Apr 2012 15:33:17 +0000 Subject: [PATCH] added progen files --- Crypto/Crypto.progen | 23 ++++++++++ Crypto/samples/genrsakey/genrsakey.progen | 18 ++++++++ Crypto/samples/samples.progen | 4 ++ Crypto/testsuite/TestSuite.progen | 16 +++++++ Data/Data.progen | 16 +++++++ Data/MySQL/MySQL.progen | 17 +++++++ Data/MySQL/testsuite/TestSuite.progen | 10 ++++ Data/ODBC/ODBC.progen | 17 +++++++ Data/ODBC/testsuite/TestSuite.progen | 10 ++++ Data/SQLite/SQLite.progen | 18 ++++++++ Data/SQLite/testsuite/TestSuite.progen | 9 ++++ Data/samples/Binding/Binding.progen | 10 ++++ Data/samples/RecordSet/RecordSet.progen | 10 ++++ Data/samples/Tuple/Tuple.progen | 10 ++++ Data/samples/TypeHandler/TypeHandler.progen | 10 ++++ Data/samples/samples.progen | 8 ++++ Data/testsuite/TestSuite.progen | 9 ++++ .../samples/ActiveMethod/ActiveMethod.progen | 12 +++++ Foundation/samples/Activity/Activity.progen | 12 +++++ .../BinaryReaderWriter.progen | 12 +++++ Foundation/samples/DateTime/DateTime.progen | 12 +++++ .../samples/LogRotation/LogRotation.progen | 12 +++++ Foundation/samples/Logger/Logger.progen | 12 +++++ .../NotificationQueue.progen | 12 +++++ .../StringTokenizer/StringTokenizer.progen | 12 +++++ Foundation/samples/Timer/Timer.progen | 12 +++++ Foundation/samples/URI/URI.progen | 12 +++++ .../samples/base64decode/base64decode.progen | 12 +++++ .../samples/base64encode/base64encode.progen | 12 +++++ Foundation/samples/deflate/deflate.progen | 12 +++++ Foundation/samples/dir/dir.progen | 12 +++++ Foundation/samples/grep/grep.progen | 12 +++++ Foundation/samples/hmacmd5/hmacmd5.progen | 12 +++++ Foundation/samples/inflate/inflate.progen | 12 +++++ Foundation/samples/md5/md5.progen | 12 +++++ Foundation/samples/samples.progen | 46 +++++++++---------- Foundation/samples/uuidgen/uuidgen.progen | 12 +++++ Net/Net.progen | 19 ++++++++ Net/samples/EchoServer/EchoServer.progen | 12 +++++ .../HTTPFormServer/HTTPFormServer.progen | 12 +++++ Net/samples/HTTPLoadTest/HTTPLoadTest.progen | 12 +++++ .../HTTPTimeServer/HTTPTimeServer.progen | 12 +++++ Net/samples/Mail/Mail.progen | 12 +++++ Net/samples/Ping/Ping.progen | 12 +++++ Net/samples/TimeServer/TimeServer.progen | 12 +++++ .../TwitterClient/TwitterClient.progen | 12 +++++ Net/samples/dict/dict.progen | 12 +++++ Net/samples/download/download.progen | 12 +++++ Net/samples/httpget/httpget.progen | 12 +++++ Net/samples/samples.progen | 16 +++++++ Net/testsuite/TestSuite.progen | 12 +++++ NetSSL_OpenSSL/NetSSL_OpenSSL.progen | 25 ++++++++++ .../HTTPSTimeServer/HTTPSTimeServer.progen | 18 ++++++++ .../samples/download/download.progen | 18 ++++++++ NetSSL_OpenSSL/samples/samples.progen | 7 +++ NetSSL_OpenSSL/testsuite/TestSuite.progen | 18 ++++++++ PageCompiler/File2Page/File2Page.progen | 32 ++++++------- PageCompiler/PageCompiler.progen | 16 +++++++ .../HTTPTimeServer/HTTPTimeServer.progen | 24 +++++----- PageCompiler/samples/samples.progen | 8 ++-- Util/Util.progen | 16 +++++++ Util/samples/SampleApp/SampleApp.progen | 12 +++++ Util/samples/SampleServer/SampleServer.progen | 12 +++++ Util/samples/pkill/pkill.progen | 24 +++++----- Util/samples/samples.progen | 7 +++ Util/testsuite/TestSuite.progen | 9 ++++ XML/XML.progen | 16 +++++++ XML/samples/DOMParser/DOMParser.progen | 12 +++++ XML/samples/DOMWriter/DOMWriter.progen | 12 +++++ XML/samples/PrettyPrint/PrettyPrint.progen | 12 +++++ XML/samples/SAXParser/SAXParser.progen | 12 +++++ XML/samples/samples.progen | 8 ++++ XML/testsuite/TestSuite.progen | 9 ++++ Zip/Zip.progen | 20 ++++++++ Zip/samples/samples.progen | 6 +++ Zip/samples/unzip/unzip.progen | 12 +++++ Zip/samples/zip/zip.progen | 12 +++++ Zip/testsuite/TestSuite.progen | 9 ++++ 78 files changed, 987 insertions(+), 67 deletions(-) create mode 100644 Crypto/Crypto.progen create mode 100644 Crypto/samples/genrsakey/genrsakey.progen create mode 100644 Crypto/samples/samples.progen create mode 100644 Crypto/testsuite/TestSuite.progen create mode 100644 Data/Data.progen create mode 100644 Data/MySQL/MySQL.progen create mode 100644 Data/MySQL/testsuite/TestSuite.progen create mode 100644 Data/ODBC/ODBC.progen create mode 100644 Data/ODBC/testsuite/TestSuite.progen create mode 100644 Data/SQLite/SQLite.progen create mode 100644 Data/SQLite/testsuite/TestSuite.progen create mode 100644 Data/samples/Binding/Binding.progen create mode 100644 Data/samples/RecordSet/RecordSet.progen create mode 100644 Data/samples/Tuple/Tuple.progen create mode 100644 Data/samples/TypeHandler/TypeHandler.progen create mode 100644 Data/samples/samples.progen create mode 100644 Data/testsuite/TestSuite.progen create mode 100644 Foundation/samples/ActiveMethod/ActiveMethod.progen create mode 100644 Foundation/samples/Activity/Activity.progen create mode 100644 Foundation/samples/BinaryReaderWriter/BinaryReaderWriter.progen create mode 100644 Foundation/samples/DateTime/DateTime.progen create mode 100644 Foundation/samples/LogRotation/LogRotation.progen create mode 100644 Foundation/samples/Logger/Logger.progen create mode 100644 Foundation/samples/NotificationQueue/NotificationQueue.progen create mode 100644 Foundation/samples/StringTokenizer/StringTokenizer.progen create mode 100644 Foundation/samples/Timer/Timer.progen create mode 100644 Foundation/samples/URI/URI.progen create mode 100644 Foundation/samples/base64decode/base64decode.progen create mode 100644 Foundation/samples/base64encode/base64encode.progen create mode 100644 Foundation/samples/deflate/deflate.progen create mode 100644 Foundation/samples/dir/dir.progen create mode 100644 Foundation/samples/grep/grep.progen create mode 100644 Foundation/samples/hmacmd5/hmacmd5.progen create mode 100644 Foundation/samples/inflate/inflate.progen create mode 100644 Foundation/samples/md5/md5.progen create mode 100644 Foundation/samples/uuidgen/uuidgen.progen create mode 100644 Net/Net.progen create mode 100644 Net/samples/EchoServer/EchoServer.progen create mode 100644 Net/samples/HTTPFormServer/HTTPFormServer.progen create mode 100644 Net/samples/HTTPLoadTest/HTTPLoadTest.progen create mode 100644 Net/samples/HTTPTimeServer/HTTPTimeServer.progen create mode 100644 Net/samples/Mail/Mail.progen create mode 100644 Net/samples/Ping/Ping.progen create mode 100644 Net/samples/TimeServer/TimeServer.progen create mode 100644 Net/samples/TwitterClient/TwitterClient.progen create mode 100644 Net/samples/dict/dict.progen create mode 100644 Net/samples/download/download.progen create mode 100644 Net/samples/httpget/httpget.progen create mode 100644 Net/samples/samples.progen create mode 100644 Net/testsuite/TestSuite.progen create mode 100644 NetSSL_OpenSSL/NetSSL_OpenSSL.progen create mode 100644 NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer.progen create mode 100644 NetSSL_OpenSSL/samples/download/download.progen create mode 100644 NetSSL_OpenSSL/samples/samples.progen create mode 100644 NetSSL_OpenSSL/testsuite/TestSuite.progen create mode 100644 PageCompiler/PageCompiler.progen create mode 100644 Util/Util.progen create mode 100644 Util/samples/SampleApp/SampleApp.progen create mode 100644 Util/samples/SampleServer/SampleServer.progen create mode 100644 Util/samples/samples.progen create mode 100644 Util/testsuite/TestSuite.progen create mode 100644 XML/XML.progen create mode 100644 XML/samples/DOMParser/DOMParser.progen create mode 100644 XML/samples/DOMWriter/DOMWriter.progen create mode 100644 XML/samples/PrettyPrint/PrettyPrint.progen create mode 100644 XML/samples/SAXParser/SAXParser.progen create mode 100644 XML/samples/samples.progen create mode 100644 XML/testsuite/TestSuite.progen create mode 100644 Zip/Zip.progen create mode 100644 Zip/samples/samples.progen create mode 100644 Zip/samples/unzip/unzip.progen create mode 100644 Zip/samples/zip/zip.progen create mode 100644 Zip/testsuite/TestSuite.progen diff --git a/Crypto/Crypto.progen b/Crypto/Crypto.progen new file mode 100644 index 000000000..961fc0f81 --- /dev/null +++ b/Crypto/Crypto.progen @@ -0,0 +1,23 @@ +vc.project.guid = EEEE7259-32E9-4D56-B023-C733940AB2A0 +vc.project.name = Crypto +vc.project.target = Poco${vc.project.name} +vc.project.type = library +vc.project.pocobase = .. +vc.project.outdir = ${vc.project.pocobase} +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\Foundation\\include +vc.project.compiler.defines = +vc.project.compiler.defines.shared = ${vc.project.name}_EXPORTS +vc.project.compiler.defines.debug_shared = ${vc.project.compiler.defines.shared} +vc.project.compiler.defines.release_shared = ${vc.project.compiler.defines.shared} +vc.project.linker.dependencies = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.debug_shared = libeay32.lib ssleay32.lib +vc.project.linker.dependencies.release_shared = libeay32.lib ssleay32.lib +vc.project.linker.dependencies.debug_static_md = libeay32.lib ssleay32.lib +vc.project.linker.dependencies.release_static_md = libeay32.lib ssleay32.lib +vc.project.linker.dependencies.debug_static_mt = libeay32mtd.lib ssleay32mtd.lib Crypt32.lib +vc.project.linker.dependencies.release_static_mt = libeay32mt.lib ssleay32mt.lib Crypt32.lib +vc.solution.create = true +vc.solution.include = testsuite\\TestSuite diff --git a/Crypto/samples/genrsakey/genrsakey.progen b/Crypto/samples/genrsakey/genrsakey.progen new file mode 100644 index 000000000..a924b386f --- /dev/null +++ b/Crypto/samples/genrsakey/genrsakey.progen @@ -0,0 +1,18 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include;..\\..\\..\\XML\\include;..\\..\\..\\Util\\include;..\\..\\..\\Crypto\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib +vc.project.linker.dependencies.debug_shared = libeay32.lib ssleay32.lib +vc.project.linker.dependencies.release_shared = libeay32.lib ssleay32.lib +vc.project.linker.dependencies.debug_static_md = libeay32.lib ssleay32.lib +vc.project.linker.dependencies.release_static_md = libeay32.lib ssleay32.lib +vc.project.linker.dependencies.debug_static_mt = libeay32mtd.lib ssleay32mtd.lib Crypt32.lib +vc.project.linker.dependencies.release_static_mt = libeay32mt.lib ssleay32mt.lib Crypt32.lib diff --git a/Crypto/samples/samples.progen b/Crypto/samples/samples.progen new file mode 100644 index 000000000..82ab28fe7 --- /dev/null +++ b/Crypto/samples/samples.progen @@ -0,0 +1,4 @@ +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.solution.create = true +vc.solution.include = genrsakey\\genrsakey diff --git a/Crypto/testsuite/TestSuite.progen b/Crypto/testsuite/TestSuite.progen new file mode 100644 index 000000000..8b350ac04 --- /dev/null +++ b/Crypto/testsuite/TestSuite.progen @@ -0,0 +1,16 @@ +vc.project.guid = C1B1BB96-5198-48EB-AB48-9A0A0B54FB15 +vc.project.name = TestSuite +vc.project.target = TestSuite +vc.project.type = testsuite +vc.project.pocobase = ..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = TestSuite_vs90.vcproj +vc.project.compiler.include = ..\\..\\Foundation\\include +vc.project.linker.dependencies = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.debug_shared = libeay32.lib ssleay32.lib +vc.project.linker.dependencies.release_shared = libeay32.lib ssleay32.lib +vc.project.linker.dependencies.debug_static_md = libeay32.lib ssleay32.lib +vc.project.linker.dependencies.release_static_md = libeay32.lib ssleay32.lib +vc.project.linker.dependencies.debug_static_mt = libeay32mtd.lib ssleay32mtd.lib Crypt32.lib +vc.project.linker.dependencies.release_static_mt = libeay32mt.lib ssleay32mt.lib Crypt32.lib diff --git a/Data/Data.progen b/Data/Data.progen new file mode 100644 index 000000000..4f266fa53 --- /dev/null +++ b/Data/Data.progen @@ -0,0 +1,16 @@ +vc.project.guid = 240E83C3-368D-11DB-9FBC-00123FC423B5 +vc.project.name = Data +vc.project.target = Poco${vc.project.name} +vc.project.type = library +vc.project.pocobase = .. +vc.project.outdir = ${vc.project.pocobase} +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\Foundation\\include +vc.project.compiler.defines = +vc.project.compiler.defines.shared = ${vc.project.name}_EXPORTS +vc.project.compiler.defines.debug_shared = ${vc.project.compiler.defines.shared} +vc.project.compiler.defines.release_shared = ${vc.project.compiler.defines.shared} +vc.solution.create = true +vc.solution.include = testsuite\\TestSuite diff --git a/Data/MySQL/MySQL.progen b/Data/MySQL/MySQL.progen new file mode 100644 index 000000000..4717e4599 --- /dev/null +++ b/Data/MySQL/MySQL.progen @@ -0,0 +1,17 @@ +vc.project.guid = 73E19FDE-1570-488C-B3DB-72A60FADD408 +vc.project.name = MySQL +vc.project.target = PocoDataMySQL +vc.project.type = library +vc.project.pocobase = ..\\.. +vc.project.outdir = ${vc.project.pocobase} +vc.project.platforms = Win32, x64 +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\Foundation\\include;..\\..\\Data\\include +vc.project.compiler.defines = THREADSAFE;__LCC__ +vc.project.compiler.defines.shared = ${vc.project.name}_EXPORTS +vc.project.compiler.defines.debug_shared = ${vc.project.compiler.defines.shared} +vc.project.compiler.defines.release_shared = ${vc.project.compiler.defines.shared} +vc.project.linker.dependencies = libmysql.lib +vc.solution.create = true +vc.solution.include = testsuite\\TestSuite diff --git a/Data/MySQL/testsuite/TestSuite.progen b/Data/MySQL/testsuite/TestSuite.progen new file mode 100644 index 000000000..29b42f685 --- /dev/null +++ b/Data/MySQL/testsuite/TestSuite.progen @@ -0,0 +1,10 @@ +vc.project.guid = 4D6E42AE-EB6A-47EB-A186-B8A183FABCF7 +vc.project.name = TestSuite +vc.project.target = TestSuite +vc.project.type = testsuite +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64 +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = TestSuite_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include;..\\..\\..\\Data\\include +vc.project.linker.dependencies = libmysql.lib diff --git a/Data/ODBC/ODBC.progen b/Data/ODBC/ODBC.progen new file mode 100644 index 000000000..3a1d7535e --- /dev/null +++ b/Data/ODBC/ODBC.progen @@ -0,0 +1,17 @@ +vc.project.guid = 1B29820D-375F-11DB-837B-00123FC423B5 +vc.project.name = ODBC +vc.project.target = PocoDataODBC +vc.project.type = library +vc.project.pocobase = ..\\.. +vc.project.outdir = ${vc.project.pocobase} +vc.project.platforms = Win32, x64 +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\Foundation\\include;..\\..\\Data\\include +vc.project.compiler.defines = THREADSAFE +vc.project.compiler.defines.shared = ${vc.project.name}_EXPORTS +vc.project.compiler.defines.debug_shared = ${vc.project.compiler.defines.shared} +vc.project.compiler.defines.release_shared = ${vc.project.compiler.defines.shared} +vc.project.linker.dependencies = odbc32.lib odbccp32.lib +vc.solution.create = true +vc.solution.include = testsuite\\TestSuite diff --git a/Data/ODBC/testsuite/TestSuite.progen b/Data/ODBC/testsuite/TestSuite.progen new file mode 100644 index 000000000..acd3bcce1 --- /dev/null +++ b/Data/ODBC/testsuite/TestSuite.progen @@ -0,0 +1,10 @@ +vc.project.guid = 00627063-395B-4413-9099-23BDB56562FA +vc.project.name = TestSuite +vc.project.target = TestSuite +vc.project.type = testsuite +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64 +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = TestSuite_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include;..\\..\\..\\Data\\include +vc.project.linker.dependencies = odbc32.lib odbccp32.lib diff --git a/Data/SQLite/SQLite.progen b/Data/SQLite/SQLite.progen new file mode 100644 index 000000000..2366a9754 --- /dev/null +++ b/Data/SQLite/SQLite.progen @@ -0,0 +1,18 @@ +vc.project.guid = 5B889CE7-AD42-4CFE-BBC3-532B61F8329E +vc.project.name = SQLite +vc.project.target = PocoDataSQLite +vc.project.type = library +vc.project.pocobase = ..\\.. +vc.project.outdir = ${vc.project.pocobase} +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\Foundation\\include;..\\..\\Data\\include +vc.project.compiler.defines = SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED +vc.project.compiler.defines.shared = ${vc.project.name}_EXPORTS +vc.project.compiler.defines.debug_shared = ${vc.project.compiler.defines.shared} +vc.project.compiler.defines.release_shared = ${vc.project.compiler.defines.shared} +vc.project.compiler.defines.WinCE = SQLITE_OMIT_LOCALTIME +vc.project.compiler.disableWarnings = 4996;4244;4018 +vc.solution.create = true +vc.solution.include = testsuite\\TestSuite diff --git a/Data/SQLite/testsuite/TestSuite.progen b/Data/SQLite/testsuite/TestSuite.progen new file mode 100644 index 000000000..5a0f29b4d --- /dev/null +++ b/Data/SQLite/testsuite/TestSuite.progen @@ -0,0 +1,9 @@ +vc.project.guid = 45528A81-2523-48DD-AEB3-6B6BD73A2C5D +vc.project.name = TestSuite +vc.project.target = TestSuite +vc.project.type = testsuite +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = TestSuite_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include;..\\..\\..\\Data\\include diff --git a/Data/samples/Binding/Binding.progen b/Data/samples/Binding/Binding.progen new file mode 100644 index 000000000..5bc064cdb --- /dev/null +++ b/Data/samples/Binding/Binding.progen @@ -0,0 +1,10 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include;..\\..\\..\\XML\\include;..\\..\\..\\Util\\include;..\\..\\..\\Data\\include;..\\..\\..\\Data\\SQLite\\include +vc.project.linker.dependencies = ws2_32.lib iphlpapi.lib diff --git a/Data/samples/RecordSet/RecordSet.progen b/Data/samples/RecordSet/RecordSet.progen new file mode 100644 index 000000000..5bc064cdb --- /dev/null +++ b/Data/samples/RecordSet/RecordSet.progen @@ -0,0 +1,10 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include;..\\..\\..\\XML\\include;..\\..\\..\\Util\\include;..\\..\\..\\Data\\include;..\\..\\..\\Data\\SQLite\\include +vc.project.linker.dependencies = ws2_32.lib iphlpapi.lib diff --git a/Data/samples/Tuple/Tuple.progen b/Data/samples/Tuple/Tuple.progen new file mode 100644 index 000000000..5bc064cdb --- /dev/null +++ b/Data/samples/Tuple/Tuple.progen @@ -0,0 +1,10 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include;..\\..\\..\\XML\\include;..\\..\\..\\Util\\include;..\\..\\..\\Data\\include;..\\..\\..\\Data\\SQLite\\include +vc.project.linker.dependencies = ws2_32.lib iphlpapi.lib diff --git a/Data/samples/TypeHandler/TypeHandler.progen b/Data/samples/TypeHandler/TypeHandler.progen new file mode 100644 index 000000000..5bc064cdb --- /dev/null +++ b/Data/samples/TypeHandler/TypeHandler.progen @@ -0,0 +1,10 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include;..\\..\\..\\XML\\include;..\\..\\..\\Util\\include;..\\..\\..\\Data\\include;..\\..\\..\\Data\\SQLite\\include +vc.project.linker.dependencies = ws2_32.lib iphlpapi.lib diff --git a/Data/samples/samples.progen b/Data/samples/samples.progen new file mode 100644 index 000000000..258d77c8e --- /dev/null +++ b/Data/samples/samples.progen @@ -0,0 +1,8 @@ +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.solution.create = true +vc.solution.include = \ + Binding\\Binding;\ + RecordSet\\RecordSet;\ + Tuple\\Tuple;\ + TypeHandler\\TypeHandler diff --git a/Data/testsuite/TestSuite.progen b/Data/testsuite/TestSuite.progen new file mode 100644 index 000000000..8885cc2e7 --- /dev/null +++ b/Data/testsuite/TestSuite.progen @@ -0,0 +1,9 @@ +vc.project.guid = 1813A463-E349-4FEA-8A8E-4A41E41C0DC7 +vc.project.name = TestSuite +vc.project.target = TestSuite +vc.project.type = testsuite +vc.project.pocobase = ..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = TestSuite_vs90.vcproj +vc.project.compiler.include = ..\\..\\Foundation\\include diff --git a/Foundation/samples/ActiveMethod/ActiveMethod.progen b/Foundation/samples/ActiveMethod/ActiveMethod.progen new file mode 100644 index 000000000..9625451ea --- /dev/null +++ b/Foundation/samples/ActiveMethod/ActiveMethod.progen @@ -0,0 +1,12 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib diff --git a/Foundation/samples/Activity/Activity.progen b/Foundation/samples/Activity/Activity.progen new file mode 100644 index 000000000..9625451ea --- /dev/null +++ b/Foundation/samples/Activity/Activity.progen @@ -0,0 +1,12 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib diff --git a/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter.progen b/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter.progen new file mode 100644 index 000000000..9625451ea --- /dev/null +++ b/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter.progen @@ -0,0 +1,12 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib diff --git a/Foundation/samples/DateTime/DateTime.progen b/Foundation/samples/DateTime/DateTime.progen new file mode 100644 index 000000000..9625451ea --- /dev/null +++ b/Foundation/samples/DateTime/DateTime.progen @@ -0,0 +1,12 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib diff --git a/Foundation/samples/LogRotation/LogRotation.progen b/Foundation/samples/LogRotation/LogRotation.progen new file mode 100644 index 000000000..9625451ea --- /dev/null +++ b/Foundation/samples/LogRotation/LogRotation.progen @@ -0,0 +1,12 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib diff --git a/Foundation/samples/Logger/Logger.progen b/Foundation/samples/Logger/Logger.progen new file mode 100644 index 000000000..9625451ea --- /dev/null +++ b/Foundation/samples/Logger/Logger.progen @@ -0,0 +1,12 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib diff --git a/Foundation/samples/NotificationQueue/NotificationQueue.progen b/Foundation/samples/NotificationQueue/NotificationQueue.progen new file mode 100644 index 000000000..9625451ea --- /dev/null +++ b/Foundation/samples/NotificationQueue/NotificationQueue.progen @@ -0,0 +1,12 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib diff --git a/Foundation/samples/StringTokenizer/StringTokenizer.progen b/Foundation/samples/StringTokenizer/StringTokenizer.progen new file mode 100644 index 000000000..9625451ea --- /dev/null +++ b/Foundation/samples/StringTokenizer/StringTokenizer.progen @@ -0,0 +1,12 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib diff --git a/Foundation/samples/Timer/Timer.progen b/Foundation/samples/Timer/Timer.progen new file mode 100644 index 000000000..9625451ea --- /dev/null +++ b/Foundation/samples/Timer/Timer.progen @@ -0,0 +1,12 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib diff --git a/Foundation/samples/URI/URI.progen b/Foundation/samples/URI/URI.progen new file mode 100644 index 000000000..9625451ea --- /dev/null +++ b/Foundation/samples/URI/URI.progen @@ -0,0 +1,12 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib diff --git a/Foundation/samples/base64decode/base64decode.progen b/Foundation/samples/base64decode/base64decode.progen new file mode 100644 index 000000000..9625451ea --- /dev/null +++ b/Foundation/samples/base64decode/base64decode.progen @@ -0,0 +1,12 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib diff --git a/Foundation/samples/base64encode/base64encode.progen b/Foundation/samples/base64encode/base64encode.progen new file mode 100644 index 000000000..9625451ea --- /dev/null +++ b/Foundation/samples/base64encode/base64encode.progen @@ -0,0 +1,12 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib diff --git a/Foundation/samples/deflate/deflate.progen b/Foundation/samples/deflate/deflate.progen new file mode 100644 index 000000000..9625451ea --- /dev/null +++ b/Foundation/samples/deflate/deflate.progen @@ -0,0 +1,12 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib diff --git a/Foundation/samples/dir/dir.progen b/Foundation/samples/dir/dir.progen new file mode 100644 index 000000000..9625451ea --- /dev/null +++ b/Foundation/samples/dir/dir.progen @@ -0,0 +1,12 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib diff --git a/Foundation/samples/grep/grep.progen b/Foundation/samples/grep/grep.progen new file mode 100644 index 000000000..9625451ea --- /dev/null +++ b/Foundation/samples/grep/grep.progen @@ -0,0 +1,12 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib diff --git a/Foundation/samples/hmacmd5/hmacmd5.progen b/Foundation/samples/hmacmd5/hmacmd5.progen new file mode 100644 index 000000000..9625451ea --- /dev/null +++ b/Foundation/samples/hmacmd5/hmacmd5.progen @@ -0,0 +1,12 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib diff --git a/Foundation/samples/inflate/inflate.progen b/Foundation/samples/inflate/inflate.progen new file mode 100644 index 000000000..9625451ea --- /dev/null +++ b/Foundation/samples/inflate/inflate.progen @@ -0,0 +1,12 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib diff --git a/Foundation/samples/md5/md5.progen b/Foundation/samples/md5/md5.progen new file mode 100644 index 000000000..9625451ea --- /dev/null +++ b/Foundation/samples/md5/md5.progen @@ -0,0 +1,12 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib diff --git a/Foundation/samples/samples.progen b/Foundation/samples/samples.progen index 6bba20247..45ab3f26c 100644 --- a/Foundation/samples/samples.progen +++ b/Foundation/samples/samples.progen @@ -1,23 +1,23 @@ -vc.project.platforms = Win32, x64, WinCE -vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md -vc.solution.create = true -vc.solution.include = \ - ActiveMethod\\ActiveMethod;\ - Activity\\Activity;\ - base64decode\\base64decode;\ - base64encode\\base64encode;\ - BinaryReaderWriter\\BinaryReaderWriter;\ - DateTime\\DateTime;\ - deflate\\deflate;\ - dir\\dir;\ - grep\\grep;\ - hmacmd5\\hmacmd5;\ - inflate\\inflate;\ - Logger\\Logger;\ - LogRotation\\LogRotation;\ - md5\\md5;\ - NotificationQueue\\NotificationQueue;\ - StringTokenizer\\StringTokenizer;\ - Timer\\Timer;\ - URI\\URI;\ - uuidgen\\uuidgen +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.solution.create = true +vc.solution.include = \ + ActiveMethod\\ActiveMethod;\ + Activity\\Activity;\ + base64decode\\base64decode;\ + base64encode\\base64encode;\ + BinaryReaderWriter\\BinaryReaderWriter;\ + DateTime\\DateTime;\ + deflate\\deflate;\ + dir\\dir;\ + grep\\grep;\ + hmacmd5\\hmacmd5;\ + inflate\\inflate;\ + Logger\\Logger;\ + LogRotation\\LogRotation;\ + md5\\md5;\ + NotificationQueue\\NotificationQueue;\ + StringTokenizer\\StringTokenizer;\ + Timer\\Timer;\ + URI\\URI;\ + uuidgen\\uuidgen diff --git a/Foundation/samples/uuidgen/uuidgen.progen b/Foundation/samples/uuidgen/uuidgen.progen new file mode 100644 index 000000000..9625451ea --- /dev/null +++ b/Foundation/samples/uuidgen/uuidgen.progen @@ -0,0 +1,12 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib diff --git a/Net/Net.progen b/Net/Net.progen new file mode 100644 index 000000000..b2476f355 --- /dev/null +++ b/Net/Net.progen @@ -0,0 +1,19 @@ +vc.project.guid = B057A1FE-09F7-465E-B8B5-E1B659051D76 +vc.project.name = Net +vc.project.target = Poco${vc.project.name} +vc.project.type = library +vc.project.pocobase = .. +vc.project.outdir = ${vc.project.pocobase} +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\Foundation\\include +vc.project.compiler.defines = +vc.project.compiler.defines.shared = ${vc.project.name}_EXPORTS +vc.project.compiler.defines.debug_shared = ${vc.project.compiler.defines.shared} +vc.project.compiler.defines.release_shared = ${vc.project.compiler.defines.shared} +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib +vc.solution.create = true +vc.solution.include = testsuite\\TestSuite diff --git a/Net/samples/EchoServer/EchoServer.progen b/Net/samples/EchoServer/EchoServer.progen new file mode 100644 index 000000000..8785b5784 --- /dev/null +++ b/Net/samples/EchoServer/EchoServer.progen @@ -0,0 +1,12 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include;..\\..\\..\\XML\\include;..\\..\\..\\Util\\include;..\\..\\..\\Net\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib diff --git a/Net/samples/HTTPFormServer/HTTPFormServer.progen b/Net/samples/HTTPFormServer/HTTPFormServer.progen new file mode 100644 index 000000000..8785b5784 --- /dev/null +++ b/Net/samples/HTTPFormServer/HTTPFormServer.progen @@ -0,0 +1,12 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include;..\\..\\..\\XML\\include;..\\..\\..\\Util\\include;..\\..\\..\\Net\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib diff --git a/Net/samples/HTTPLoadTest/HTTPLoadTest.progen b/Net/samples/HTTPLoadTest/HTTPLoadTest.progen new file mode 100644 index 000000000..8785b5784 --- /dev/null +++ b/Net/samples/HTTPLoadTest/HTTPLoadTest.progen @@ -0,0 +1,12 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include;..\\..\\..\\XML\\include;..\\..\\..\\Util\\include;..\\..\\..\\Net\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib diff --git a/Net/samples/HTTPTimeServer/HTTPTimeServer.progen b/Net/samples/HTTPTimeServer/HTTPTimeServer.progen new file mode 100644 index 000000000..8785b5784 --- /dev/null +++ b/Net/samples/HTTPTimeServer/HTTPTimeServer.progen @@ -0,0 +1,12 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include;..\\..\\..\\XML\\include;..\\..\\..\\Util\\include;..\\..\\..\\Net\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib diff --git a/Net/samples/Mail/Mail.progen b/Net/samples/Mail/Mail.progen new file mode 100644 index 000000000..8785b5784 --- /dev/null +++ b/Net/samples/Mail/Mail.progen @@ -0,0 +1,12 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include;..\\..\\..\\XML\\include;..\\..\\..\\Util\\include;..\\..\\..\\Net\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib diff --git a/Net/samples/Ping/Ping.progen b/Net/samples/Ping/Ping.progen new file mode 100644 index 000000000..8785b5784 --- /dev/null +++ b/Net/samples/Ping/Ping.progen @@ -0,0 +1,12 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include;..\\..\\..\\XML\\include;..\\..\\..\\Util\\include;..\\..\\..\\Net\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib diff --git a/Net/samples/TimeServer/TimeServer.progen b/Net/samples/TimeServer/TimeServer.progen new file mode 100644 index 000000000..8785b5784 --- /dev/null +++ b/Net/samples/TimeServer/TimeServer.progen @@ -0,0 +1,12 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include;..\\..\\..\\XML\\include;..\\..\\..\\Util\\include;..\\..\\..\\Net\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib diff --git a/Net/samples/TwitterClient/TwitterClient.progen b/Net/samples/TwitterClient/TwitterClient.progen new file mode 100644 index 000000000..8785b5784 --- /dev/null +++ b/Net/samples/TwitterClient/TwitterClient.progen @@ -0,0 +1,12 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include;..\\..\\..\\XML\\include;..\\..\\..\\Util\\include;..\\..\\..\\Net\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib diff --git a/Net/samples/dict/dict.progen b/Net/samples/dict/dict.progen new file mode 100644 index 000000000..8785b5784 --- /dev/null +++ b/Net/samples/dict/dict.progen @@ -0,0 +1,12 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include;..\\..\\..\\XML\\include;..\\..\\..\\Util\\include;..\\..\\..\\Net\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib diff --git a/Net/samples/download/download.progen b/Net/samples/download/download.progen new file mode 100644 index 000000000..8785b5784 --- /dev/null +++ b/Net/samples/download/download.progen @@ -0,0 +1,12 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include;..\\..\\..\\XML\\include;..\\..\\..\\Util\\include;..\\..\\..\\Net\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib diff --git a/Net/samples/httpget/httpget.progen b/Net/samples/httpget/httpget.progen new file mode 100644 index 000000000..8785b5784 --- /dev/null +++ b/Net/samples/httpget/httpget.progen @@ -0,0 +1,12 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include;..\\..\\..\\XML\\include;..\\..\\..\\Util\\include;..\\..\\..\\Net\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib diff --git a/Net/samples/samples.progen b/Net/samples/samples.progen new file mode 100644 index 000000000..fcd7f1870 --- /dev/null +++ b/Net/samples/samples.progen @@ -0,0 +1,16 @@ +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.solution.create = true +vc.solution.include = \ + dict\\dict;\ + download\\download;\ + EchoServer\\EchoServer;\ + HTTPFormServer\\HTTPFormServer;\ + httpget\\httpget;\ + HTTPLoadTest\\HTTPLoadTest;\ + HTTPTimeServer\\HTTPTimeServer;\ + Mail\\Mail;\ + Ping\\Ping;\ + TimeServer\\TimeServer;\ + TwitterClient\\TwitterClient;\ + WebSocketServer\\WebSocketServer diff --git a/Net/testsuite/TestSuite.progen b/Net/testsuite/TestSuite.progen new file mode 100644 index 000000000..3b654eeb0 --- /dev/null +++ b/Net/testsuite/TestSuite.progen @@ -0,0 +1,12 @@ +vc.project.guid = D5EFBF27-B934-4B8D-8AE5-6EC00374819C +vc.project.name = TestSuite +vc.project.target = TestSuite +vc.project.type = testsuite +vc.project.pocobase = ..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = TestSuite_vs90.vcproj +vc.project.compiler.include = ..\\..\\Foundation\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib diff --git a/NetSSL_OpenSSL/NetSSL_OpenSSL.progen b/NetSSL_OpenSSL/NetSSL_OpenSSL.progen new file mode 100644 index 000000000..7d604c0d1 --- /dev/null +++ b/NetSSL_OpenSSL/NetSSL_OpenSSL.progen @@ -0,0 +1,25 @@ +vc.project.guid = 5AECC55E-A469-11DA-8DA6-005056C00008 +vc.project.name = NetSSL_OpenSSL +vc.project.target = PocoNetSSL +vc.project.type = library +vc.project.pocobase = .. +vc.project.outdir = ${vc.project.pocobase} +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\Foundation\\include;..\\Net\\include;..\\Util\\include;..\\Crypto\\include +vc.project.compiler.defines = +vc.project.compiler.defines.shared = NetSSL_EXPORTS +vc.project.compiler.defines.debug_shared = ${vc.project.compiler.defines.shared} +vc.project.compiler.defines.release_shared = ${vc.project.compiler.defines.shared} +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib +vc.project.linker.dependencies.debug_shared = libeay32.lib ssleay32.lib +vc.project.linker.dependencies.release_shared = libeay32.lib ssleay32.lib +vc.project.linker.dependencies.debug_static_md = libeay32.lib ssleay32.lib +vc.project.linker.dependencies.release_static_md = libeay32.lib ssleay32.lib +vc.project.linker.dependencies.debug_static_mt = libeay32mtd.lib ssleay32mtd.lib Crypt32.lib +vc.project.linker.dependencies.release_static_mt = libeay32mt.lib ssleay32mt.lib Crypt32.lib +vc.solution.create = true +vc.solution.include = testsuite\\TestSuite diff --git a/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer.progen b/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer.progen new file mode 100644 index 000000000..d12a5995a --- /dev/null +++ b/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer.progen @@ -0,0 +1,18 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include;..\\..\\..\\XML\\include;..\\..\\..\\Util\\include;..\\..\\..\\Net\\include;..\\..\\..\\NetSSL_OpenSSL\\include;..\\..\\..\\Crypto\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib +vc.project.linker.dependencies.debug_shared = libeay32.lib ssleay32.lib +vc.project.linker.dependencies.release_shared = libeay32.lib ssleay32.lib +vc.project.linker.dependencies.debug_static_md = libeay32.lib ssleay32.lib +vc.project.linker.dependencies.release_static_md = libeay32.lib ssleay32.lib +vc.project.linker.dependencies.debug_static_mt = libeay32mtd.lib ssleay32mtd.lib Crypt32.lib +vc.project.linker.dependencies.release_static_mt = libeay32mt.lib ssleay32mt.lib Crypt32.lib diff --git a/NetSSL_OpenSSL/samples/download/download.progen b/NetSSL_OpenSSL/samples/download/download.progen new file mode 100644 index 000000000..d12a5995a --- /dev/null +++ b/NetSSL_OpenSSL/samples/download/download.progen @@ -0,0 +1,18 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include;..\\..\\..\\XML\\include;..\\..\\..\\Util\\include;..\\..\\..\\Net\\include;..\\..\\..\\NetSSL_OpenSSL\\include;..\\..\\..\\Crypto\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib +vc.project.linker.dependencies.debug_shared = libeay32.lib ssleay32.lib +vc.project.linker.dependencies.release_shared = libeay32.lib ssleay32.lib +vc.project.linker.dependencies.debug_static_md = libeay32.lib ssleay32.lib +vc.project.linker.dependencies.release_static_md = libeay32.lib ssleay32.lib +vc.project.linker.dependencies.debug_static_mt = libeay32mtd.lib ssleay32mtd.lib Crypt32.lib +vc.project.linker.dependencies.release_static_mt = libeay32mt.lib ssleay32mt.lib Crypt32.lib diff --git a/NetSSL_OpenSSL/samples/samples.progen b/NetSSL_OpenSSL/samples/samples.progen new file mode 100644 index 000000000..424c65f15 --- /dev/null +++ b/NetSSL_OpenSSL/samples/samples.progen @@ -0,0 +1,7 @@ +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.solution.create = true +vc.solution.include = \ + download\\download;\ + HTTPSTimeServer\\HTTPSTimeServer;\ + Mail\\Mail diff --git a/NetSSL_OpenSSL/testsuite/TestSuite.progen b/NetSSL_OpenSSL/testsuite/TestSuite.progen new file mode 100644 index 000000000..534addde6 --- /dev/null +++ b/NetSSL_OpenSSL/testsuite/TestSuite.progen @@ -0,0 +1,18 @@ +vc.project.guid = B2B88092-5BCE-4AC0-941E-88167138B4A7 +vc.project.name = TestSuite +vc.project.target = TestSuite +vc.project.type = testsuite +vc.project.pocobase = ..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = TestSuite_vs90.vcproj +vc.project.compiler.include = ..\\..\\Foundation\\include;..\\..\\XML\\include;..\\..\\Util\\include;..\\..\\Net\\include;..\\..\\Crypto\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib +vc.project.linker.dependencies.debug_shared = libeay32.lib ssleay32.lib +vc.project.linker.dependencies.release_shared = libeay32.lib ssleay32.lib +vc.project.linker.dependencies.debug_static_md = libeay32.lib ssleay32.lib +vc.project.linker.dependencies.release_static_md = libeay32.lib ssleay32.lib +vc.project.linker.dependencies.debug_static_mt = libeay32mtd.lib ssleay32mtd.lib Crypt32.lib +vc.project.linker.dependencies.release_static_mt = libeay32mt.lib ssleay32mt.lib Crypt32.lib diff --git a/PageCompiler/File2Page/File2Page.progen b/PageCompiler/File2Page/File2Page.progen index 635279419..c9deec1c6 100644 --- a/PageCompiler/File2Page/File2Page.progen +++ b/PageCompiler/File2Page/File2Page.progen @@ -1,16 +1,16 @@ -vc.project.guid = 8BD05B6C-A179-40F1-BD17-6EA813055883 -vc.project.name = File2Page -vc.project.target = f2cpsp -vc.project.type = executable -vc.project.pocobase = ..\\.. -vc.project.outdir = ${vc.project.pocobase} -vc.project.platforms = Win32, x64 -vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md -vc.project.prototype = ${vc.project.name}_vs90.vcproj -vc.project.compiler.include = ..\\..\\Foundation\\include;..\\..\\XML\\include;..\\..\\Util\\include;..\\..\\Net\\include -vc.project.compiler.defines = -vc.project.compiler.defines.shared = -vc.project.compiler.defines.debug_shared = ${vc.project.compiler.defines.shared} -vc.project.compiler.defines.release_shared = ${vc.project.compiler.defines.shared} -vc.project.linker.dependencies = ws2_32.lib iphlpapi.lib -vc.solution.create = true +vc.project.guid = 8BD05B6C-A179-40F1-BD17-6EA813055883 +vc.project.name = File2Page +vc.project.target = f2cpsp +vc.project.type = executable +vc.project.pocobase = ..\\.. +vc.project.outdir = ${vc.project.pocobase} +vc.project.platforms = Win32, x64 +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\Foundation\\include;..\\..\\XML\\include;..\\..\\Util\\include;..\\..\\Net\\include +vc.project.compiler.defines = +vc.project.compiler.defines.shared = +vc.project.compiler.defines.debug_shared = ${vc.project.compiler.defines.shared} +vc.project.compiler.defines.release_shared = ${vc.project.compiler.defines.shared} +vc.project.linker.dependencies = ws2_32.lib iphlpapi.lib +vc.solution.create = true diff --git a/PageCompiler/PageCompiler.progen b/PageCompiler/PageCompiler.progen new file mode 100644 index 000000000..2c27e218d --- /dev/null +++ b/PageCompiler/PageCompiler.progen @@ -0,0 +1,16 @@ +vc.project.guid = E12E5C71-79A4-495A-848F-F1710111E610 +vc.project.name = PageCompiler +vc.project.target = cpspc +vc.project.type = executable +vc.project.pocobase = .. +vc.project.outdir = ${vc.project.pocobase} +vc.project.platforms = Win32, x64 +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = PageCompiler_vs90.vcproj +vc.project.compiler.include = ..\\Foundation\\include;..\\XML\\include;..\\Util\\include;..\\Net\\include +vc.project.compiler.defines = +vc.project.compiler.defines.shared = +vc.project.compiler.defines.debug_shared = ${vc.project.compiler.defines.shared} +vc.project.compiler.defines.release_shared = ${vc.project.compiler.defines.shared} +vc.project.linker.dependencies = ws2_32.lib iphlpapi.lib +vc.solution.create = true diff --git a/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer.progen b/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer.progen index 789048c79..8785b5784 100644 --- a/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer.progen +++ b/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer.progen @@ -1,12 +1,12 @@ -vc.project.guid = ${vc.project.guidFromName} -vc.project.name = ${vc.project.baseName} -vc.project.target = ${vc.project.name} -vc.project.type = executable -vc.project.pocobase = ..\\..\\.. -vc.project.platforms = Win32, x64, WinCE -vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md -vc.project.prototype = ${vc.project.name}_vs90.vcproj -vc.project.compiler.include = ..\\..\\..\\Foundation\\include;..\\..\\..\\XML\\include;..\\..\\..\\Util\\include;..\\..\\..\\Net\\include -vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib -vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib -vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include;..\\..\\..\\XML\\include;..\\..\\..\\Util\\include;..\\..\\..\\Net\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib diff --git a/PageCompiler/samples/samples.progen b/PageCompiler/samples/samples.progen index ef1a9232d..b628b256b 100644 --- a/PageCompiler/samples/samples.progen +++ b/PageCompiler/samples/samples.progen @@ -1,4 +1,4 @@ -vc.project.platforms = Win32, x64, WinCE -vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md -vc.solution.create = true -vc.solution.include = HTTPTimeServer\\HTTPTimeServer +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.solution.create = true +vc.solution.include = HTTPTimeServer\\HTTPTimeServer diff --git a/Util/Util.progen b/Util/Util.progen new file mode 100644 index 000000000..9b50b8cb6 --- /dev/null +++ b/Util/Util.progen @@ -0,0 +1,16 @@ +vc.project.guid = 6FF56CDB-787A-4714-A28C-919003F9FA6C +vc.project.name = Util +vc.project.target = Poco${vc.project.name} +vc.project.type = library +vc.project.pocobase = .. +vc.project.outdir = ${vc.project.pocobase} +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\Foundation\\include;..\\XML\\include +vc.project.compiler.defines = +vc.project.compiler.defines.shared = ${vc.project.name}_EXPORTS +vc.project.compiler.defines.debug_shared = ${vc.project.compiler.defines.shared} +vc.project.compiler.defines.release_shared = ${vc.project.compiler.defines.shared} +vc.solution.create = true +vc.solution.include = testsuite\\TestSuite diff --git a/Util/samples/SampleApp/SampleApp.progen b/Util/samples/SampleApp/SampleApp.progen new file mode 100644 index 000000000..32176e402 --- /dev/null +++ b/Util/samples/SampleApp/SampleApp.progen @@ -0,0 +1,12 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include;..\\..\\..\\XML\\include;..\\..\\..\\Util\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib diff --git a/Util/samples/SampleServer/SampleServer.progen b/Util/samples/SampleServer/SampleServer.progen new file mode 100644 index 000000000..32176e402 --- /dev/null +++ b/Util/samples/SampleServer/SampleServer.progen @@ -0,0 +1,12 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include;..\\..\\..\\XML\\include;..\\..\\..\\Util\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib diff --git a/Util/samples/pkill/pkill.progen b/Util/samples/pkill/pkill.progen index 65bd82b3d..32176e402 100644 --- a/Util/samples/pkill/pkill.progen +++ b/Util/samples/pkill/pkill.progen @@ -1,12 +1,12 @@ -vc.project.guid = ${vc.project.guidFromName} -vc.project.name = ${vc.project.baseName} -vc.project.target = ${vc.project.name} -vc.project.type = executable -vc.project.pocobase = ..\\..\\.. -vc.project.platforms = Win32, x64, WinCE -vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md -vc.project.prototype = ${vc.project.name}_vs90.vcproj -vc.project.compiler.include = ..\\..\\..\\Foundation\\include;..\\..\\..\\XML\\include;..\\..\\..\\Util\\include -vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib -vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib -vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include;..\\..\\..\\XML\\include;..\\..\\..\\Util\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib diff --git a/Util/samples/samples.progen b/Util/samples/samples.progen new file mode 100644 index 000000000..4a04e2474 --- /dev/null +++ b/Util/samples/samples.progen @@ -0,0 +1,7 @@ +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.solution.create = true +vc.solution.include = \ + pkill\\pkill;\ + SampleApp\\SampleApp;\ + SampleServer\\SampleServer diff --git a/Util/testsuite/TestSuite.progen b/Util/testsuite/TestSuite.progen new file mode 100644 index 000000000..ddd9ccd63 --- /dev/null +++ b/Util/testsuite/TestSuite.progen @@ -0,0 +1,9 @@ +vc.project.guid = E40E738C-447B-40F4-A878-EBA9A2459270 +vc.project.name = TestSuite +vc.project.target = TestSuite +vc.project.type = testsuite +vc.project.pocobase = ..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = TestSuite_vs90.vcproj +vc.project.compiler.include = ..\\..\\Foundation\\include;..\\..\\XML\\include diff --git a/XML/XML.progen b/XML/XML.progen new file mode 100644 index 000000000..75ef9cc76 --- /dev/null +++ b/XML/XML.progen @@ -0,0 +1,16 @@ +vc.project.guid = 9E211743-85FE-4977-82F3-4F04B40C912D +vc.project.name = XML +vc.project.target = Poco${vc.project.name} +vc.project.type = library +vc.project.pocobase = .. +vc.project.outdir = ${vc.project.pocobase} +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\Foundation\\include +vc.project.compiler.defines = XML_STATIC;XML_NS;XML_DTD;HAVE_EXPAT_CONFIG_H +vc.project.compiler.defines.shared = ${vc.project.name}_EXPORTS +vc.project.compiler.defines.debug_shared = ${vc.project.compiler.defines.shared} +vc.project.compiler.defines.release_shared = ${vc.project.compiler.defines.shared} +vc.solution.create = true +vc.solution.include = testsuite\\TestSuite diff --git a/XML/samples/DOMParser/DOMParser.progen b/XML/samples/DOMParser/DOMParser.progen new file mode 100644 index 000000000..1aa8942a1 --- /dev/null +++ b/XML/samples/DOMParser/DOMParser.progen @@ -0,0 +1,12 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include;..\\..\\..\\XML\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib diff --git a/XML/samples/DOMWriter/DOMWriter.progen b/XML/samples/DOMWriter/DOMWriter.progen new file mode 100644 index 000000000..1aa8942a1 --- /dev/null +++ b/XML/samples/DOMWriter/DOMWriter.progen @@ -0,0 +1,12 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include;..\\..\\..\\XML\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib diff --git a/XML/samples/PrettyPrint/PrettyPrint.progen b/XML/samples/PrettyPrint/PrettyPrint.progen new file mode 100644 index 000000000..1aa8942a1 --- /dev/null +++ b/XML/samples/PrettyPrint/PrettyPrint.progen @@ -0,0 +1,12 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include;..\\..\\..\\XML\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib diff --git a/XML/samples/SAXParser/SAXParser.progen b/XML/samples/SAXParser/SAXParser.progen new file mode 100644 index 000000000..1aa8942a1 --- /dev/null +++ b/XML/samples/SAXParser/SAXParser.progen @@ -0,0 +1,12 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include;..\\..\\..\\XML\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib diff --git a/XML/samples/samples.progen b/XML/samples/samples.progen new file mode 100644 index 000000000..33312ea94 --- /dev/null +++ b/XML/samples/samples.progen @@ -0,0 +1,8 @@ +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.solution.create = true +vc.solution.include = \ + DOMParser\\DOMParser;\ + DOMWriter\\DOMWriter;\ + PrettyPrint\\PrettyPrint;\ + SAXParser\\SAXParser diff --git a/XML/testsuite/TestSuite.progen b/XML/testsuite/TestSuite.progen new file mode 100644 index 000000000..8f8770367 --- /dev/null +++ b/XML/testsuite/TestSuite.progen @@ -0,0 +1,9 @@ +vc.project.guid = C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45 +vc.project.name = TestSuite +vc.project.target = TestSuite +vc.project.type = testsuite +vc.project.pocobase = ..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = TestSuite_vs90.vcproj +vc.project.compiler.include = ..\\..\\Foundation\\include diff --git a/Zip/Zip.progen b/Zip/Zip.progen new file mode 100644 index 000000000..74e6ffd17 --- /dev/null +++ b/Zip/Zip.progen @@ -0,0 +1,20 @@ +vc.project.guid = 4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61 +vc.project.name = Zip +vc.project.target = Poco${vc.project.name} +vc.project.type = library +vc.project.pocobase = .. +vc.project.outdir = ${vc.project.pocobase} +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\Foundation\\include +vc.project.compiler.defines = +vc.project.compiler.defines.shared = ${vc.project.name}_EXPORTS +vc.project.compiler.defines.debug_shared = ${vc.project.compiler.defines.shared} +vc.project.compiler.defines.release_shared = ${vc.project.compiler.defines.shared} +vc.project.compiler.disableWarnings = 4244;4267 +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib +vc.solution.create = true +vc.solution.include = testsuite\\TestSuite diff --git a/Zip/samples/samples.progen b/Zip/samples/samples.progen new file mode 100644 index 000000000..e08d074e5 --- /dev/null +++ b/Zip/samples/samples.progen @@ -0,0 +1,6 @@ +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.solution.create = true +vc.solution.include = \ + zip\\zip;\ + unzip\\unzip diff --git a/Zip/samples/unzip/unzip.progen b/Zip/samples/unzip/unzip.progen new file mode 100644 index 000000000..ec85e0737 --- /dev/null +++ b/Zip/samples/unzip/unzip.progen @@ -0,0 +1,12 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include;..\\..\\..\\XML\\include;..\\..\\..\\Util\\include;..\\..\\..\\Zip\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib diff --git a/Zip/samples/zip/zip.progen b/Zip/samples/zip/zip.progen new file mode 100644 index 000000000..ec85e0737 --- /dev/null +++ b/Zip/samples/zip/zip.progen @@ -0,0 +1,12 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include;..\\..\\..\\XML\\include;..\\..\\..\\Util\\include;..\\..\\..\\Zip\\include +vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib +vc.project.linker.dependencies.WinCE = ws2.lib iphlpapi.lib diff --git a/Zip/testsuite/TestSuite.progen b/Zip/testsuite/TestSuite.progen new file mode 100644 index 000000000..483a398b4 --- /dev/null +++ b/Zip/testsuite/TestSuite.progen @@ -0,0 +1,9 @@ +vc.project.guid = 9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7 +vc.project.name = TestSuite +vc.project.target = TestSuite +vc.project.type = testsuite +vc.project.pocobase = ..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = TestSuite_vs90.vcproj +vc.project.compiler.include = ..\\..\\Foundation\\include