mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 05:43:30 +00:00
9fa710c813
svn path=/branches/GSoC_2011/ThemesSupport/; revision=52643
14 lines
324 B
CMake
14 lines
324 B
CMake
|
|
spec2def(ufat.dll ufat.spec)
|
|
|
|
list(APPEND SOURCE
|
|
ufat.c
|
|
ufat.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/ufat.def)
|
|
|
|
add_library(ufat SHARED ${SOURCE})
|
|
|
|
set_module_type(ufat win32dll)
|
|
target_link_libraries(ufat vfatlib)
|
|
add_importlibs(ufat msvcrt kernel32 ntdll)
|
|
add_cd_file(TARGET ufat DESTINATION reactos/system32 FOR all)
|