1 2spec2def(dxtn.dll dxtn.spec) 3 4add_library(dxtn SHARED 5 fxt1.c 6 dxtn.c 7 wrapper.c 8 texstore.c 9 ${CMAKE_CURRENT_BINARY_DIR}/dxtn.def) 10 11set_entrypoint(dxtn 0) 12add_importlibs(dxtn msvcrt) 13if(NOT MSVC) 14 add_target_compile_flags(dxtn "-Wno-unused-but-set-variable") 15endif() 16add_cd_file(TARGET dxtn DESTINATION reactos/system32 FOR all) 17