Programming: Difference between revisions

From Empires Wiki
Jump to navigation Jump to search
No edit summary
mNo edit summary
Line 1: Line 1:
How to get your code to compile on the gitlab runners.
How to get your code to compile on the gitlab runners.


# Step 1:
# 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
# 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 is 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"


# Step 2:
TODO: add pictures showing this
Make sure the last include is #include "tier0/memdbgon.h"
 
# Step 3:
Repeat this for all the cpp files you want to add :P before proceeding...

Revision as of 03:56, 14 April 2017

How to get your code to compile on the gitlab runners.

  1. Make sure your .cpp file contains #include "cbase.h" before any other includes
  2. Make sure the last include is #include "tier0/memdbgon.h"
  3. Repeat this for all the cpp files you want to add :P before proceeding...
  4. Ensure your files is in an appropriate directory. e.g. ...\src\game\server\empires\my_cpp_file.cpp
  5. Make an entry in the server_hl2mp.vpc file for your file e.g. $File "empires\my_cpp_file.cpp"

TODO: add pictures showing this