From 565cc1c4b54c5b7d4e79cb95ae87bc88876eaeee Mon Sep 17 00:00:00 2001 From: Asher Glick Date: Mon, 19 Aug 2024 18:12:51 -0500 Subject: [PATCH] removing the timestamp from the dll --- burrito_link/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/burrito_link/CMakeLists.txt b/burrito_link/CMakeLists.txt index fc25597e..a58d1154 100644 --- a/burrito_link/CMakeLists.txt +++ b/burrito_link/CMakeLists.txt @@ -37,5 +37,5 @@ target_link_libraries(${DX11LIB} PRIVATE "ws2_32") set_target_properties(${DX11LIB} PROPERTIES PREFIX "" SUFFIX "" - LINK_FLAGS "../deffile.def -Wl,--allow-shlib-undefined -Wl,-O1 -shared -static -static-libgcc -static-libstdc++ -Wl,--file-alignment=4096 -lm -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32" + LINK_FLAGS "../deffile.def -Wl,--allow-shlib-undefined,--no-insert-timestamp -Wl,-O1 -shared -static -static-libgcc -static-libstdc++ -Wl,--file-alignment=4096 -lm -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32" )