mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
0604273535
v1.7.4 (2020-08-23): - Fixed issue when running compressed EXEs - Changed build system to cmake - Upgraded zstd to version 1.4.5 - Added support for FSCTL_GET_RETRIEVAL_POINTERS - Miscellaneous bug fixes
20 lines
682 B
CMake
20 lines
682 B
CMake
|
|
include_directories(
|
|
${REACTOS_SOURCE_DIR}/drivers/filesystems/btrfs)
|
|
|
|
list(APPEND SOURCE
|
|
${REACTOS_SOURCE_DIR}/drivers/filesystems/btrfs/blake2b-ref.c
|
|
${REACTOS_SOURCE_DIR}/drivers/filesystems/btrfs/crc32c.c
|
|
${REACTOS_SOURCE_DIR}/drivers/filesystems/btrfs/sha256.c
|
|
${REACTOS_SOURCE_DIR}/drivers/filesystems/btrfs/xxhash.c
|
|
btrfslib.c)
|
|
|
|
if((ARCH STREQUAL "i386") OR (ARCH STREQUAL "amd64"))
|
|
list(APPEND ASM_SOURCE ${REACTOS_SOURCE_DIR}/drivers/filesystems/btrfs/crc32c.S)
|
|
add_asm_files(btrfs_asm ${ASM_SOURCE})
|
|
endif()
|
|
|
|
add_library(btrfslib ${SOURCE} ${btrfs_asm})
|
|
target_compile_definitions(btrfslib PRIVATE _USRDLL)
|
|
add_dependencies(btrfslib psdk)
|