Programming: Difference between revisions
Jump to navigation
Jump to search
VulcanStorm (talk | contribs) mNo edit summary |
VulcanStorm (talk | contribs) mNo edit summary |
||
Line 2: | Line 2: | ||
# Make sure your .cpp file contains #include "cbase.h" before any other includes | # Make sure your .cpp file contains #include "cbase.h" before any other includes | ||
[[File:wikipires_includes.PNG|400px]] | |||
# Make sure the last include is #include "tier0/memdbgon.h" | # Make sure the last include is #include "tier0/memdbgon.h" | ||
# Repeat this for all the cpp files you want to add :P before proceeding... | # Repeat this for all the cpp files you want to add :P before proceeding... | ||
# Ensure your files | |||
# Ensure your files are in an appropriate directory. e.g. ...\src\game\server\empires\my_cpp_file.cpp | |||
[[File:wikipires_file_locations.PNG|400px]] | |||
# Make an entry in the server_hl2mp.vpc file for your file e.g. $File "empires\my_cpp_file.cpp" | # Make an entry in the server_hl2mp.vpc file for your file e.g. $File "empires\my_cpp_file.cpp" | ||
[[File:wikipires_vpc_edit.PNG|400px]] | |||
Latest revision as of 05:08, 14 April 2017
How to get your code to compile on the gitlab runners.
- Make sure your .cpp file contains #include "cbase.h" before any other includes
- Make sure the last include is #include "tier0/memdbgon.h"
- Repeat this for all the cpp files you want to add :P before proceeding...
- Ensure your files are in an appropriate directory. e.g. ...\src\game\server\empires\my_cpp_file.cpp
- Make an entry in the server_hl2mp.vpc file for your file e.g. $File "empires\my_cpp_file.cpp"