Skip to content
Snippets Groups Projects
Commit 86ebb875 authored by Lennart Matthias Steffen's avatar Lennart Matthias Steffen
Browse files

Initial commit

parent bda822e6
No related branches found
No related tags found
No related merge requests found
/build/*
cmake_minimum_required(VERSION 3.13.1 FATAL_ERROR)
message(STATUS "Preparing boost-math library...")
project("boost-math")
add_library(boost "")
set_target_properties(boost PROPERTIES LINKER_LANGUAGE CXX)
include(package_files.cmake)
target_sources(boost PUBLIC ${package_files})
target_include_directories(boost PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
if(CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_SOURCE_DIR)
message(STATUS "Creating package archive...")
add_custom_target(zip ALL
COMMAND ${CMAKE_COMMAND} -E tar cf ${PROJECT_SOURCE_DIR}/${PROJECT_NAME}.zip --format=zip -- ${package_files}
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
COMMENT "Building archive..."
)
endif()
This diff is collapsed.
bcp_log.txt 0 → 100644
This diff is collapsed.
File added
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment