mirror of
https://github.com/soarqin/DSP_Mods.git
synced 2025-12-09 03:33:29 +08:00
12 lines
255 B
CMake
12 lines
255 B
CMake
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()
|