mirror of
https://github.com/reactos/reactos.git
synced 2025-01-05 13:59:25 +00:00
16 lines
349 B
CMake
16 lines
349 B
CMake
|
|
spec2def(dxtn.dll dxtn.spec)
|
|
|
|
add_library(dxtn SHARED
|
|
fxt1.c
|
|
dxtn.c
|
|
wrapper.c
|
|
texstore.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/dxtn.def)
|
|
|
|
set_entrypoint(dxtn 0)
|
|
add_importlibs(dxtn msvcrt)
|
|
if(NOT MSVC)
|
|
add_target_compile_flags(dxtn "-Wno-unused-but-set-variable")
|
|
endif()
|
|
add_cd_file(TARGET dxtn DESTINATION reactos/system32 FOR all)
|