File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed
GeneralsMD/Code/Tools/CRCDiff Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -42,15 +42,17 @@ include(FetchContent)
42
42
if ((WIN32 OR "${CMAKE_SYSTEM} " MATCHES "Windows" ) AND ${CMAKE_SIZEOF_VOID_P} EQUAL 4 )
43
43
include (cmake/miles.cmake )
44
44
include (cmake/bink.cmake )
45
- if (IS_VS6_BUILD )
46
- include (cmake/stlport.cmake )
47
- else ()
48
- add_library (stlport INTERFACE ) # Do not use stlport
49
- endif ()
50
45
include (cmake/dx8.cmake )
51
46
include (cmake/dbghelp.cmake )
52
47
endif ()
53
48
49
+ # Define a dummy stlport target when not on VC6.
50
+ if (IS_VS6_BUILD )
51
+ include (cmake/stlport.cmake )
52
+ else ()
53
+ add_library (stlport INTERFACE )
54
+ endif ()
55
+
54
56
include (cmake/config.cmake )
55
57
include (cmake/gamespy.cmake )
56
58
include (cmake/lzhl.cmake )
Original file line number Diff line number Diff line change 24
24
#include < list>
25
25
#include < stdlib.h>
26
26
#include < stdio.h>
27
+ #include < string.h>
27
28
28
29
// =============================================================================
29
30
Original file line number Diff line number Diff line change 27
27
#include " KVPair.h"
28
28
#include " debug.h"
29
29
#include < stdio.h>
30
+ #include < string.h>
30
31
31
32
std::string intToString (int val)
32
33
{
You can’t perform that action at this time.
0 commit comments