Compare commits

...

1 Commits

Author SHA1 Message Date
keldu.magnus 666cfcf92f added windows files 2021-08-06 01:40:13 +02:00
3 changed files with 18 additions and 2 deletions

View File

@ -9,7 +9,5 @@ Import('env')
dir_path = Dir('.').abspath
env.driver_sources += sorted(glob.glob(dir_path + "/tls/*.cpp"))
env.driver_sources += sorted(glob.glob(dir_path + "/*.cpp"))
env.driver_headers += sorted(glob.glob(dir_path + "/*.h"))

7
driver/io-windows.cpp Normal file
View File

@ -0,0 +1,7 @@
#include "driver/io-windows.h"
namespace gin {
namespace windows {
}
}

11
driver/io-windows.h Normal file
View File

@ -0,0 +1,11 @@
#pragma once
#ifndef GIN_WINDOWS
#error "Don't include this"
#endif
namespace gin {
namespace windows {
}
}