cs: unbreak Windows build

Add pe-made "cs_config.h" for Windows.
This commit is contained in:
Matthew Flatt 2019-07-12 11:49:39 -06:00
parent b4d7885b16
commit fa155727df
2 changed files with 6 additions and 1 deletions

View File

@ -1,5 +1,5 @@
INCS = /I.. /I..\..\rktio /I..\librktio /I$(SCHEME_DIR)\$(MACHINE)\boot\$(MACHINE)
INCS = /I.. /I..\..\rktio /I..\librktio /I..\..\worksp\cs /I$(SCHEME_DIR)\$(MACHINE)\boot\$(MACHINE)
RKTIO_LIB = ..\..\build\librktio.lib
BASE_WIN32_LIBS = WS2_32.lib Shell32.lib User32.lib

View File

@ -0,0 +1,5 @@
#ifdef _WIN64
# define SIZEOF_VOID_P 8
#else
# define SIZEOF_VOID_P 4
#endif