platform and stability
authorhgn <hgodden00@gmail.com>
Sat, 8 Oct 2022 06:18:43 +0000 (07:18 +0100)
committerhgn <hgodden00@gmail.com>
Sat, 8 Oct 2022 06:18:43 +0000 (07:18 +0100)
build.sh
model.h
world.h

index bb59b6faf6ff3f181f6d46a43ac738727559dc09..2ceb2fecffb559b6c1c64fb27f73c2102715ccda 100755 (executable)
--- a/build.sh
+++ b/build.sh
@@ -18,7 +18,7 @@ _linux_folder="bin/linux"
 _linux_server_folder="bin/linux_server"
 
 _windows_compiler="i686-w64-mingw32-gcc"
-_windows_linkgraphics="-lglfw3dll -lopengl32 -lm -mwindows"
+_windows_linkgraphics="-lglfw3dll -lopengl32 -lm -pthread -static -mwindows"
 _windows_asan=""
 _windows_linksteam="vg/dep/steam/steam_api.dll"
 _windows_folder="bin/win32"
diff --git a/model.h b/model.h
index 02e85bcd835b59c3e2639dbf0076605271da9ce3..c84f0fe09adc591d21ca30dd2ae37e2ca3e1872a 100644 (file)
--- a/model.h
+++ b/model.h
@@ -1,3 +1,7 @@
+/*
+ * Copyright (C) 2021-2022 Mt.ZERO Software, Harry Godden - All Rights Reserved
+ */
+
 #ifndef MODEL_H
 #define MODEL_H
 
diff --git a/world.h b/world.h
index f18c3e55b5f12792116ca20b461c290304acd378..a7b5a587b1e0a55318dc1de1990de5db456579f4 100644 (file)
--- a/world.h
+++ b/world.h
@@ -17,7 +17,6 @@ static int ray_world( v3f pos, v3f dir, ray_hit *hit );
 #include "render.h"
 #include "rigidbody.h"
 #include "bvh.h"
-#include "lighting.h"
 #include "model.h"
 
 #include "traffic.h" /*TODO: -> world_traffic.h */