[VFATLIB] Never touch the file system if not in interactive or RW mode.
[reactos.git] / sdk / lib / fslib / vfatxlib / CMakeLists.txt
1
2 list(APPEND SOURCE
3 fatx.c
4 vfatxlib.c
5 vfatxlib.h)
6
7 add_library(vfatxlib ${SOURCE})
8 add_pch(vfatxlib vfatxlib.h SOURCE)
9 target_link_libraries(vfatxlib chkstk)
10
11 if(NOT MSVC)
12 target_link_libraries(vfatxlib -lgcc)
13 endif()
14
15 add_dependencies(vfatxlib psdk)