mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
16 lines
267 B
CMake
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)
|