summaryrefslogtreecommitdiff
path: root/serverbrowser/ServerBrowser.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 /serverbrowser/ServerBrowser.vpc
downloadarchived-source-engine-2018-hl2-src-master.tar.xz
archived-source-engine-2018-hl2-src-master.zip
Diffstat (limited to 'serverbrowser/ServerBrowser.vpc')
-rw-r--r--serverbrowser/ServerBrowser.vpc106
1 files changed, 106 insertions, 0 deletions
diff --git a/serverbrowser/ServerBrowser.vpc b/serverbrowser/ServerBrowser.vpc
new file mode 100644
index 0000000..6bfedde
--- /dev/null
+++ b/serverbrowser/ServerBrowser.vpc
@@ -0,0 +1,106 @@
+//-----------------------------------------------------------------------------
+// SERVERBROWSER.VPC
+//
+// Project Script
+//-----------------------------------------------------------------------------
+
+$Macro SRCDIR ".."
+$Macro OUTBINDIR "$SRCDIR\..\game\bin"
+
+$Include "$SRCDIR\vpc_scripts\source_dll_base.vpc"
+
+$Configuration
+{
+ $Compiler
+ {
+ $PreprocessorDefinitions "$BASE;VERSION_SAFE_STEAM_API_INTERFACES;SERVERBROWSER_EXPORTS;GAME_SRC;_USE_32BIT_TIME_T"
+ }
+
+ $Linker
+ {
+ $AdditionalDependencies "$BASE Advapi32.lib wsock32.lib Ws2_32.lib User32.lib" [$WIN32]
+ $AdditionalDependencies "$BASE Xonline.lib" [$X360]
+ $SystemLibraries "iconv" [$OSXALL]
+ }
+}
+
+$Project "ServerBrowser"
+{
+ $Folder "Source Files"
+ {
+ $File "BaseGamesPage.cpp"
+ $File "BlacklistedServers.cpp"
+ $File "CustomGames.cpp"
+ $File "DialogAddServer.cpp"
+ $File "DialogGameInfo.cpp"
+ $File "DialogServerPassword.cpp"
+ $File "FavoriteGames.cpp"
+ $File "FriendsGames.cpp"
+ $File "HistoryGames.cpp"
+ $File "InternetGames.cpp"
+ $File "LanGames.cpp"
+ $File "ModList.cpp"
+ $File "ServerBrowser.cpp"
+ $File "ServerBrowserDialog.cpp"
+ $File "ServerContextMenu.cpp"
+ $File "ServerListCompare.cpp"
+ $File "SpectateGames.cpp"
+ $File "VACBannedConnRefusedDialog.cpp"
+ $File "VACBannedConnRefusedDialog.h"
+
+ $File "QuickListPanel.cpp"
+
+ $File "$SRCDIR\public\vgui_controls\vgui_controls.cpp"
+ {
+ $Configuration
+ {
+ $Compiler
+ {
+ }
+ }
+ }
+
+ $File "$SRCDIR\common\ServerBrowser\blacklisted_server_manager.cpp"
+ }
+
+ $Folder "Header Files"
+ {
+ $File "BaseGamesPage.h"
+ $File "BlacklistedServers.h"
+ $File "CustomGames.h"
+ $File "DialogAddServer.h"
+ $File "DialogGameInfo.h"
+ $File "DialogServerPassword.h"
+ $File "FavoriteGames.h"
+ $File "FriendsGames.h"
+ $File "HistoryGames.h"
+ $File "InternetGames.h"
+ $File "LanGames.h"
+ $File "ModList.h"
+ $File "ServerBrowser.h"
+ $File "ServerBrowserDialog.h"
+ $File "ServerContextMenu.h"
+ $File "ServerListCompare.h"
+ $File "SpectateGames.h"
+ $File "QuickListPanel.h"
+
+ $File "$SRCDIR\common\ServerBrowser\blacklisted_server_manager.h"
+ }
+
+ $Folder "Resource Files"
+ {
+ }
+ $Folder "Exposed interfaces"
+ {
+ $File "$SRCDIR\common\ServerBrowser\IServerBrowser.h"
+ }
+
+ $Folder "Link Libraries"
+ {
+ $ImpLib steam_api
+ $Lib tier2
+ $Lib tier3
+ $Lib vgui_controls
+ $Lib mathlib
+ }
+}