mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2024-11-29 12:03:51 +00:00
25 lines
494 B
CMake
25 lines
494 B
CMake
|
|
set(ttvfs_zip_SRC
|
|
VFSDirZip.cpp
|
|
VFSDirZip.h
|
|
VFSFileZip.cpp
|
|
VFSFileZip.h
|
|
VFSZipArchiveLoader.cpp
|
|
VFSZipArchiveLoader.h
|
|
VFSZipArchiveRef.cpp
|
|
VFSZipArchiveRef.h
|
|
miniz.c
|
|
miniz.h
|
|
ttvfs_zip.h
|
|
)
|
|
|
|
include_directories(${TTVFS_INCLUDE_DIRS})
|
|
|
|
add_library(ttvfs_zip ${ttvfs_zip_SRC})
|
|
|
|
install(TARGETS ttvfs_zip DESTINATION lib)
|
|
|
|
install(FILES miniz.c DESTINATION include/ttvfs)
|
|
|
|
install(DIRECTORY ./ DESTINATION include/ttvfs
|
|
FILES_MATCHING PATTERN "*.h")
|