Moved CompressSave here

This commit is contained in:
2023-12-20 15:54:52 +08:00
parent 0d6493edd2
commit 6f224902f8
46 changed files with 12915 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
cmake_minimum_required(VERSION 3.2)
project(nonewrap)
add_library(nonewrap SHARED
dllmain.c nonewrap.c nonewrap.h)
target_compile_definitions(nonewrap PRIVATE NONEWRAP_EXPORTS)
if(WIN32)
set_target_properties(nonewrap PROPERTIES PREFIX "")
endif()