mirror of
https://github.com/reactos/reactos.git
synced 2025-03-10 10:14:44 +00:00

- Move more dlls with no stubs into using def files instead of spec files. svn path=/branches/cmake-bringup/; revision=49450
14 lines
No EOL
316 B
CMake
14 lines
No EOL
316 B
CMake
|
|
add_library(ufatx SHARED ufatx.rc ufatx.def)
|
|
|
|
if(NOT MSVC)
|
|
set_source_files_properties(ufatx.def PROPERTIES EXTERNAL_OBJECT TRUE)
|
|
endif()
|
|
|
|
set_entrypoint(ufatx 0)
|
|
|
|
target_link_libraries(ufatx vfatxlib)
|
|
|
|
add_importlibs(ufatx gcc kernel32 ntdll)
|
|
add_dependencies(ufatx psdk buildno_header)
|
|
add_cab_target(ufatx 1) |