diff options
Diffstat (limited to 'RGFW.hs')
| -rw-r--r-- | RGFW.hs | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -24,8 +24,10 @@ module RGFW where import HsBindgen.Runtime.LibC import HsBindgen.TH -let - conf = def{clang = def{extraIncludeDirs = [Dir "include"]}} - confTH = def{verbosity = Verbosity Warning} +let conf = def{ + clang = def{ + extraIncludeDirs = [Dir "include"], + defineMacros = [ "RGFW_VULKAN=" ]}} + confTH = def{verbosity = Verbosity Warning} in - withHsBindgen conf confTH $ hashInclude "RGFW.h"
\ No newline at end of file + withHsBindgen conf confTH $ hashInclude "RGFW.h"
\ No newline at end of file |
