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
276 B
CMake
14 lines
276 B
CMake
|
|
add_library(ufat SHARED ufat.c ufat.rc ufat.def)
|
|
|
|
if(NOT MSVC)
|
|
set_source_files_properties(ufat.def PROPERTIES EXTERNAL_OBJECT TRUE)
|
|
endif()
|
|
|
|
set_module_type(ufat win32dll)
|
|
|
|
target_link_libraries(ufat vfatlib)
|
|
|
|
add_importlibs(ufat kernel32 ntdll)
|
|
|
|
add_cab_target(ufat 1)
|