mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 22:00:55 +00:00
c5b6b76033
- add 3rdparty dlls to boot and live cd - use gdi32 spec file - mark user32.def as EXTERNAL_OBJECT svn path=/branches/cmake-bringup/; revision=49387
19 lines
309 B
CMake
19 lines
309 B
CMake
|
|
add_definitions(-D_DLL -D__USE_CRTIMP)
|
|
|
|
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)
|
|
|
|
add_dependencies(dxtn psdk buildno_header)
|
|
|
|
add_cab_target(dxtn 1)
|