reactos/lib/fslib/vfatxlib/CMakeLists.txt
Amine Khaldi ddb3d908c9 * Sync up to trunk HEAD (r62285). Branch guys deserve the significant speedups too ;)
svn path=/branches/shell-experiments/; revision=62286
2014-02-22 10:31:26 +00:00

16 lines
267 B
CMake

list(APPEND SOURCE
fatx.c
vfatxlib.c
vfatxlib.h)
add_library(vfatxlib ${SOURCE})
add_pch(vfatxlib vfatxlib.h SOURCE)
target_link_libraries(vfatxlib chkstk)
if(NOT MSVC)
target_link_libraries(vfatxlib -lgcc)
endif()
add_dependencies(vfatxlib psdk)