summaryrefslogtreecommitdiff
path: root/game/protobuf_include.vpc
diff options
context:
space:
mode:
authorFluorescentCIAAfricanAmerican <[email protected]>2020-04-22 12:56:21 -0400
committerFluorescentCIAAfricanAmerican <[email protected]>2020-04-22 12:56:21 -0400
commit3bf9df6b2785fa6d951086978a3e66f49427166a (patch)
tree2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /game/protobuf_include.vpc
downloadarchived-source-engine-2018-hl2-src-master.tar.xz
archived-source-engine-2018-hl2-src-master.zip
Diffstat (limited to 'game/protobuf_include.vpc')
-rw-r--r--game/protobuf_include.vpc51
1 files changed, 51 insertions, 0 deletions
diff --git a/game/protobuf_include.vpc b/game/protobuf_include.vpc
new file mode 100644
index 0000000..f83b804
--- /dev/null
+++ b/game/protobuf_include.vpc
@@ -0,0 +1,51 @@
+//-----------------------------------------------------------------------------
+// protobuf_include.vpc
+//
+// Project Script
+//-----------------------------------------------------------------------------
+
+$MacroRequired "PLATFORM"
+
+$Project
+{
+ $Folder "Link Libraries" [!$VS2015]
+ {
+ $Libexternal $SRCDIR\thirdparty\protobuf-2.6.1\bin\osx32\libc++\libprotobuf [$OSX32]
+ $Libexternal $SRCDIR\thirdparty\protobuf-2.6.1\bin\win32\2013\staticcrt\release\libprotobuf [$WIN32]
+ $Libexternal $SRCDIR\thirdparty\protobuf-2.6.1\bin\linux32\libprotobuf [$LINUX32]
+ }
+
+ $Folder "Link Libraries" [$WIN64&&!$VS2015]
+ {
+ $File "$SRCDIR\thirdparty\protobuf-2.6.1\bin\win64\2013\staticcrt\release\libprotobuf.lib"
+ {
+ $Configuration "Debug" { $ExcludedFromBuild "Yes" }
+ }
+ $File "$SRCDIR\thirdparty\protobuf-2.6.1\bin\win64\2013\staticcrt\debug\libprotobuf.lib"
+ {
+ $Configuration "Release" { $ExcludedFromBuild "Yes" }
+ }
+ }
+
+ $Folder "Link Libraries" [$VS2015]
+ {
+ $File "$SRCDIR\thirdparty\protobuf-2.6.1\bin\win32\2015\staticcrt\release\libprotobuf.lib" [$WIN32]
+ {
+ $Configuration "Debug" { $ExcludedFromBuild "Yes" }
+ }
+ $File "$SRCDIR\thirdparty\protobuf-2.6.1\bin\win32\2015\staticcrt\debug\libprotobuf.lib" [$WIN32]
+ {
+ $Configuration "Release" { $ExcludedFromBuild "Yes" }
+ }
+
+ $File "$SRCDIR\thirdparty\protobuf-2.6.1\bin\win64\2015\staticcrt\release\libprotobuf.lib" [$WIN64]
+ {
+ $Configuration "Debug" { $ExcludedFromBuild "Yes" }
+ }
+ $File "$SRCDIR\thirdparty\protobuf-2.6.1\bin\win64\2015\staticcrt\debug\libprotobuf.lib" [$WIN64]
+ {
+ $Configuration "Release" { $ExcludedFromBuild "Yes" }
+ }
+ }
+}
+