1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
cmake_minimum_required(VERSION 3.16)
project(shastaStaticLibrary)
# C++ dialect.
add_definitions(-std=c++20)
# Compilation warnings.
add_definitions(-Wall -Wconversion -Wno-unused-result -Wno-trigraphs -Wno-psabi -Wunused-parameter)
# Optimization and debug options.
if(BUILD_DEBUG)
add_definitions(-ggdb3)
add_definitions(-O0)
else(BUILD_DEBUG)
add_definitions(-O3)
# NDEBUG is required to turn off SeqAn debug code.
add_definitions(-DNDEBUG)
endif(BUILD_DEBUG)
# 16-byte compare and swap.
# This is recommended for dset64.hpp/dset64-gccAtomic.hpp".
# It's available only on x86 architectures.
if(X86_64)
add_definitions(-mcx16)
endif(X86_64)
# Native build.
if(BUILD_NATIVE)
add_definitions(-march=native)
endif(BUILD_NATIVE)
# Build id.
add_definitions(-DBUILD_ID=${BUILD_ID})
# Definitions needed to eliminate dependency on the boost system library.
add_definitions(-DBOOST_SYSTEM_NO_DEPRECATED)
add_definitions(-DBOOST_ERROR_CODE_HEADER_ONLY)
# This is needed to avoid some Boost warnings about deprecated messages.
# We canot fix this in Shasta as it is a Boost problem.
# It can be removed if Boost is fixed.
add_definitions(-DBOOST_ALLOW_DEPRECATED_HEADERS)
# Sources files.
file(GLOB SOURCES ../src/*.cpp)
# Include directory.
include_directories(../src)
# Define our library.
add_library(shastaStaticLibrary STATIC ${SOURCES})
# Make sure the library is named shasta.a.
set_target_properties(shastaStaticLibrary PROPERTIES OUTPUT_NAME "shasta")
set_target_properties(shastaStaticLibrary PROPERTIES PREFIX "")
set_target_properties(shastaStaticLibrary PROPERTIES DEFINE_SYMBOL "")
# Install the static library into the bin directory.
install(TARGETS shastaStaticLibrary DESTINATION shasta-install/bin)
|