-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added building using CMake and packaging using CPack
- Loading branch information
Showing
4 changed files
with
92 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[submodule "cmake/thirdParty/Boilerplate"] | ||
path = cmake/thirdParty/Boilerplate | ||
url = https://github.com/KOLANICH-libs/Boilerplate.cmake | ||
branch = master | ||
shallow = true | ||
|
||
[submodule "cmake/thirdParty/DoxygenUtils"] | ||
path = cmake/thirdParty/DoxygenUtils | ||
url = https://github.com/KOLANICH-libs/DoxygenUtils.cmake | ||
branch = master | ||
shallow = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
cmake_minimum_required(VERSION 3.7.2) | ||
|
||
set(CMAKE_USE_RELATIVE_PATHS TRUE) | ||
project("SimpleOpt") | ||
set("PROJECT_DESCRIPTION" "An another command-line parser class for C++ that has features not available in alternative solutions (getopt, boost, argtable, argstream, gflags) and doesn't require a steep learning curve.") | ||
set("PROJECT_HOMEPAGE_URL" "https://github.com/brofield/simpleopt") | ||
|
||
set(CPACK_PACKAGE_VENDOR "Brodie Thiesfield et al.") | ||
set(CPACK_PACKAGE_VERSION_MAJOR "0") | ||
set(CPACK_PACKAGE_VERSION_MINOR "2") | ||
set(CPACK_PACKAGE_VERSION_PATCH "2") | ||
set(CPACK_PACKAGE_VERSION "${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}") | ||
|
||
set(OUR_CMAKE_MODULES_DIR "${CMAKE_CURRENT_SOURCE_DIR}/cmake") | ||
set(OUR_CMAKE_3PARTY_MODULES_DIR "${OUR_CMAKE_MODULES_DIR}/thirdParty") | ||
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${OUR_CMAKE_MODULES_DIR}" "${OUR_CMAKE_3PARTY_MODULES_DIR}" "${OUR_CMAKE_3PARTY_MODULES_DIR}/Boilerplate" "${OUR_CMAKE_3PARTY_MODULES_DIR}/DoxygenUtils") | ||
|
||
|
||
include(Boilerplate) | ||
include(DoxygenUtils) | ||
|
||
set(Include_dir "${CMAKE_CURRENT_SOURCE_DIR}/include") | ||
set(Examples_Dir "${CMAKE_CURRENT_SOURCE_DIR}/examples") | ||
|
||
buildAndPackageLib(${PROJECT_NAME} | ||
TYPE INTERFACE | ||
COMPONENT "lib" | ||
DESCRIPTION "${PROJECT_DESCRIPTION}" | ||
PUBLIC_INCLUDES ${Include_dir} | ||
DO_NOT_PASSTHROUGH | ||
) | ||
|
||
option(WITH_EXAMPLES "Build examples" OFF) | ||
if(WITH_EXAMPLES) | ||
file(GLOB_RECURSE EXAMPLES "${Examples_Dir}/*.cpp") | ||
foreach(example ${EXAMPLES}) | ||
get_filename_component(exampleName "${example}" NAME_WE) | ||
add_executable("${exampleName}" "${example}") | ||
harden("${exampleName}") | ||
add_sanitizers("${exampleName}") | ||
target_include_directories("${exampleName}" PRIVATE "${Include_dir}") | ||
endforeach() | ||
endif() | ||
|
||
option(WITH_DOCS "Build docs" ON) | ||
if(WITH_DOCS) | ||
find_package(Doxygen REQUIRED dot) | ||
load_doxyfile("${CMAKE_CURRENT_SOURCE_DIR}/simpleopt.doxy") | ||
|
||
set(DOXYGEN_PROJECT_BRIEF "${CPACK_PACKAGE_DESCRIPTION}") | ||
set(DOXYGEN_USE_MDFILE_AS_MAINPAGE "${CPACK_RESOURCE_FILE_README}") | ||
|
||
set("DOXYGEN_GENERATE_HTML" YES) | ||
set("DOXYGEN_GENERATE_MAN" YES) | ||
|
||
set("DOXYGEN_PROJECT_BRIEF" "${PROJECT_DESCRIPTION}") | ||
|
||
if(CMAKE_CXX_COMPILER_ID MATCHES "Clang") | ||
message(STATUS "Compiler is CLang, enabling CLang-assisted parsing in Doxygen.") | ||
set(DOXYGEN_CLANG_ASSISTED_PARSING YES) | ||
set(DOXYGEN_CLANG_OPTIONS "-I${Include_dir}") | ||
endif() | ||
|
||
set(DOXYGEN_EXAMPLE_PATH "${Examples_Dir}") | ||
set(DOXYGEN_STRIP_FROM_PATH "${Include_dir}") | ||
set(DOXYGEN_STRIP_FROM_INC_PATH "${Include_dir}") | ||
|
||
|
||
file(GLOB HEADERS "${Include_dir}/*.h" "${Include_dir}/*.hxx" "${Include_dir}/*.hpp") | ||
doxygen_add_docs(docs | ||
"${HEADERS}" | ||
ALL | ||
USE_STAMP_FILE | ||
) | ||
endif() | ||
|
||
#pass_through_cpack_vars() | ||
|
||
include(CPack) |
Submodule Boilerplate
added at
81002e
Submodule DoxygenUtils
added at
ad6b4d