mirror of
https://github.com/cmclark00/retro-imager.git
synced 2025-05-20 17:05:20 +01:00
Qt/QML edition
This commit is contained in:
commit
d7b361ba44
2168 changed files with 721948 additions and 0 deletions
37
dependencies/libarchive-3.4.2/cat/CMakeLists.txt
vendored
Normal file
37
dependencies/libarchive-3.4.2/cat/CMakeLists.txt
vendored
Normal file
|
@ -0,0 +1,37 @@
|
|||
############################################
|
||||
#
|
||||
# How to build bsdcat
|
||||
#
|
||||
############################################
|
||||
IF(ENABLE_CAT)
|
||||
|
||||
SET(bsdcat_SOURCES
|
||||
bsdcat.c
|
||||
bsdcat.h
|
||||
bsdcat_platform.h
|
||||
cmdline.c
|
||||
../libarchive_fe/err.c
|
||||
../libarchive_fe/err.h
|
||||
../libarchive_fe/lafe_platform.h
|
||||
)
|
||||
INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/../libarchive_fe)
|
||||
|
||||
# bsdcat documentation
|
||||
SET(bsdcat_MANS bsdcat.1)
|
||||
|
||||
# How to build bsdcat
|
||||
ADD_EXECUTABLE(bsdcat ${bsdcat_SOURCES})
|
||||
IF(ENABLE_CAT_SHARED)
|
||||
TARGET_LINK_LIBRARIES(bsdcat archive ${ADDITIONAL_LIBS})
|
||||
ELSE(ENABLE_CAT_SHARED)
|
||||
TARGET_LINK_LIBRARIES(bsdcat archive_static ${ADDITIONAL_LIBS})
|
||||
SET_TARGET_PROPERTIES(bsdcat PROPERTIES COMPILE_DEFINITIONS
|
||||
LIBARCHIVE_STATIC)
|
||||
ENDIF(ENABLE_CAT_SHARED)
|
||||
|
||||
# Installation rules
|
||||
INSTALL(TARGETS bsdcat RUNTIME DESTINATION bin)
|
||||
INSTALL_MAN(${bsdcat_MANS})
|
||||
ENDIF(ENABLE_CAT)
|
||||
|
||||
add_subdirectory(test)
|
Loading…
Add table
Add a link
Reference in a new issue