git-svn-id: svn://svn.icculus.org/gtkradiant/GtkRadiant/branches/ZeroRadiant@199 8a3a26a2-13c4-0310-b231-cf6edde360e5
This commit is contained in:
TTimo 2008-02-28 16:50:26 +00:00
parent c5ff0803df
commit 58bb028e46
3 changed files with 6 additions and 3 deletions

View File

@ -14,7 +14,6 @@ env.Append( LIBS = [ 'pthread', 'png', 'jpeg' ] )
proj = utils.vcproj( os.path.join( GetLaunchDir(), 'tools/quake3/q3map2/q3map2.vcproj' ) )
objects = lib_objects
objects += [ os.path.join( 'tools/quake3/q3map2', i ) for i in proj.getSourceFiles() ]
objects.append( 'tools/quake3/common/jpeg.c' )
q3map2 = env.Program( 'q3map2.bin', objects )
Return( 'q3map2' )

View File

@ -81,7 +81,9 @@ typedef char* LPCSTR;
#define IDNO 7
#define WINAPI
#define APIENTRY
#ifndef APIENTRY
#define APIENTRY
#endif
#ifndef GUID_DEFINED
#define GUID_DEFINED

View File

@ -1,7 +1,9 @@
#ifndef _WIN32
#define WINAPI
#define APIENTRY
#ifndef APIENTRY
#define APIENTRY
#endif
typedef void* HMODULE;
typedef void* LPVOID;