mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
41 lines
1.1 KiB
CMake
41 lines
1.1 KiB
CMake
cmake_minimum_required(VERSION 3.1)
|
|
project(xlnt_all)
|
|
|
|
# This indicates to CMakeLists in subdirectories that they are part of a larger project
|
|
set(COMBINED_PROJECT TRUE)
|
|
|
|
# Library type
|
|
option(STATIC "Set to ON to build xlnt as a static library instead of a shared library" OFF)
|
|
|
|
# Optional components
|
|
option(TESTS "Set to OFF to skip building test executable (in ./tests)" ON)
|
|
option(SAMPLES "Set to ON to build executable code samples (in ./samples)" OFF)
|
|
option(BENCHMARKS "Set to ON to build performance benchmarks (in ./benchmarks)" OFF)
|
|
option(PYTHON "Set to ON to build Arrow conversion functions (in ./python)" OFF)
|
|
|
|
# Platform specific options
|
|
if(MSVC)
|
|
option(STATIC_CRT "Link with the static version of MSVCRT (/MD[d])" OFF)
|
|
else()
|
|
option(COVERAGE "Generate coverage data using gcov" OFF)
|
|
endif()
|
|
|
|
# Add components according to selected options
|
|
if(SAMPLES)
|
|
add_subdirectory(samples)
|
|
endif()
|
|
|
|
if(BENCHMARKS)
|
|
add_subdirectory(benchmarks)
|
|
endif()
|
|
|
|
if(TESTS)
|
|
add_subdirectory(tests)
|
|
endif()
|
|
|
|
if(PYTHON)
|
|
add_subdirectory(python)
|
|
endif()
|
|
|
|
add_subdirectory(source)
|