medfall

A super great game engine
Log | Files | Refs

commit e1661b39b8bcb7e43e9e65b4dec5c9c91eb347d4
parent 9d02901733f4730d56de437e03d0a54aaa4421a5
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Tue May  9 21:50:11 +0300

Don't build genkeys/sign on Windows for now

Diffstat:
make.lua | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/make.lua b/make.lua @@ -50,15 +50,15 @@ windows_bin_ldflags( "sound", "ole32.lib" ) bin( "pp", { "pp", "lz4", "lz4hc", "heightmap", "stb_image", common_objs }, { "squish" } ) -bin( "utils/genkeys/genkeys", { "utils/genkeys/genkeys", common_objs }, { "monocypher" } ) -bin( "utils/genkeys/sign", { "utils/genkeys/sign", common_objs }, { "monocypher" } ) - linux_obj_cxxflags( "lz4", "-O3 -g0" ) linux_obj_cxxflags( "lz4hc", "-O3 -g0" ) if OS ~= "windows" then bin( "srv", { "server/main", common_objs } ) + bin( "utils/genkeys/genkeys", { "utils/genkeys/genkeys", common_objs }, { "monocypher" } ) + bin( "utils/genkeys/sign", { "utils/genkeys/sign", common_objs }, { "monocypher" } ) + bin( "test_lockfree", { "relacy" } ) linux_obj_cxxflags( "relacy", "-std=c++98 -fexceptions -frtti -Wno-shadow -Wno-missing-field-initializers" ) end