mirror of
https://github.com/simon987/cbr2cbz.git
synced 2025-04-04 08:23:05 +00:00
30 lines
464 B
CMake
30 lines
464 B
CMake
cmake_minimum_required(VERSION 3.7)
|
|
project(cbr2cbz C)
|
|
|
|
set(CMAKE_C_STANDARD 11)
|
|
option(STATIC_BUILD "Static build" off)
|
|
|
|
add_executable(cbr2cbz main.c)
|
|
|
|
if (STATIC_BUILD)
|
|
target_link_libraries(
|
|
cbr2cbz
|
|
-static
|
|
archive
|
|
acl
|
|
crypto
|
|
z
|
|
)
|
|
else ()
|
|
target_link_libraries(
|
|
cbr2cbz
|
|
archive
|
|
)
|
|
endif ()
|
|
|
|
target_compile_options(
|
|
cbr2cbz
|
|
PRIVATE
|
|
)
|
|
|