Compare commits

...

8 Commits

Author SHA1 Message Date
Claus Klein
5f614e5eb6 update most package versions (#190)
* update most package versions

extent build_all.py to inject cmake modules
and use Ninja generator

* fix build problems while build on debian

use SYSTEM include paths (for clang++)
we should not use local installed header!

* fix banchmark example

finalize cmake project code injection as an option

* fix build problems on travis CI

gtest needs c++17

* Update examples/build_all.py

Co-authored-by: Lars Melchior <TheLartians@users.noreply.github.com>

* reindent py script requested by review

indent with only 2 spaces again

* changes according the review

the gtest build error seems to be a make -j cpucount problem

* revert filter too

Co-authored-by: Lars Melchior <TheLartians@users.noreply.github.com>
2021-02-07 17:08:04 +01:00
Xavier Muller
1f5cb903e5 fix superbuild cmake < 3.17 (#193)
* CPM_INDENT in the global scope as suggest

* Fix FetchContent failure with cmake < 3.17

* format
2021-02-07 17:07:47 +01:00
alexandreSalconiDenis
7000572bbe Feature/prettify package lock (#162)
* add prettify macro

* apply the prettier and change the name of the output arg

* add parameter inside macro

* resolve path if its cmake_sourc_dir

* add missing uparsed argument

* add early unit test for prettifier

* retab prettify_cpm_add_package

* rename prettify_cpm_add_package  cpm_prettyfy_package_arguments

* convert macro to function and fix unit test

* fix typo in the name of the parse argument in prettyfy function

* change the unit test to test only the function

* add test for the commented part

* remove dead code

* fix typo

* run cmake-format on CPM.cmake

* reformated unit test prettify

* flip the logic to add space on new argument unparsed to avoir space at the end

* remove debug message

* apply most suggestion from pr 162, disable formating only for small part in unit test

* add unit test to cover defauld source dir added inside lock

* run format tool on unit test

* remove dead code

* change the prettifier from 4 space to 2

* run format on unit test
2021-01-27 13:29:15 +01:00
Borislav Stanimirov
fe8d15ba82 Expand CPM_SOURCE_CACHE path provided as a configure argument (#186)
Otherwise if one configures with -DCPM_SOURCE_CACHE=~/something (tilde to be expanded to $HOME), https://gitlab.kitware.com/cmake/cmake/-/issues/21729 hits, EXISTS always fails, and file(DOWNLOAD) fails
2021-01-21 16:31:55 +01:00
Lars Melchior
ab6e8d6d8c Performance improvement: bypass FetchContent for cached dependencies (#182)
* skip FetchContent for cached dependencies

* set default value for CPM_SKIP_FETCH to avoid conflicts

* add tests to check exported values
2021-01-20 13:15:18 +01:00
Lars Melchior
aad0397beb add further reading section (#177) 2021-01-14 12:28:11 +00:00
Lars Melchior
1ebbac6332 Apply clang-format and cmake-format and add style check workflow (#171)
* apply clang-format and cmake-format and add style check workflow

* add declare package definition

* add additional public methods and rename internals

* change development verison tag to 1.0.0

* rename internal method

* rename public method

* rename test var

* update copyright and fix comment

* typo

* run fix-format

* fix test function names
2021-01-06 14:40:33 +01:00
Yotam Gingold
cf3f62b6f2 Fixed typo in help message (#165) 2020-11-26 17:52:34 +01:00
59 changed files with 967 additions and 648 deletions

16
.clang-format Normal file
View File

@@ -0,0 +1,16 @@
---
BasedOnStyle: Google
AccessModifierOffset: '-2'
AlignTrailingComments: 'true'
AllowAllParametersOfDeclarationOnNextLine: 'false'
AlwaysBreakTemplateDeclarations: 'No'
BreakBeforeBraces: Attach
ColumnLimit: '100'
ConstructorInitializerAllOnOneLineOrOnePerLine: 'true'
IncludeBlocks: Regroup
IndentPPDirectives: AfterHash
IndentWidth: '2'
NamespaceIndentation: All
BreakBeforeBinaryOperators: All
BreakBeforeTernaryOperators: 'true'
...

71
.cmake-format Normal file
View File

@@ -0,0 +1,71 @@
format:
tab_size: 2
line_width: 100
dangle_parens: true
parse:
additional_commands:
cpmaddpackage:
pargs:
nargs: '*'
flags: []
spelling: CPMAddPackage
kwargs: &cpmaddpackagekwargs
NAME: 1
FORCE: 1
VERSION: 1
GIT_TAG: 1
DOWNLOAD_ONLY: 1
GITHUB_REPOSITORY: 1
GITLAB_REPOSITORY: 1
GIT_REPOSITORY: 1
SVN_REPOSITORY: 1
SVN_REVISION: 1
SOURCE_DIR: 1
DOWNLOAD_COMMAND: 1
FIND_PACKAGE_ARGUMENTS: 1
NO_CACHE: 1
GIT_SHALLOW: 1
URL: 1
URL_HASH: 1
URL_MD5: 1
DOWNLOAD_NAME: 1
DOWNLOAD_NO_EXTRACT: 1
HTTP_USERNAME: 1
HTTP_PASSWORD: 1
OPTIONS: +
cpmfindpackage:
pargs:
nargs: '*'
flags: []
spelling: CPMFindPackage
kwargs: *cpmaddpackagekwargs
cpmdeclarepackage:
pargs:
nargs: '*'
flags: []
spelling: CPMDeclarePackage
kwargs: *cpmaddpackagekwargs
packageproject:
pargs:
nargs: '*'
flags: []
spelling: packageProject
kwargs:
NAME: 1
VERSION: 1
INCLUDE_DIR: 1
INCLUDE_DESTINATION: 1
BINARY_DIR: 1
COMPATIBILITY: 1
VERSION_HEADER: 1
DEPENDENCIES: +
cpmusepackagelock:
pargs: 1
spelling: CPMUsePackageLock
cpmregisterpackage:
pargs: 1
spelling: CPMRegisterPackage
cpmgetpackageversion:
pargs: 2
spelling: CPMGetPackageVersion

View File

@@ -15,8 +15,8 @@ jobs:
- name: Set CPM version by tag - name: Set CPM version by tag
run: | run: |
mkdir dist mkdir dist
sed "s/0.27.2-development-version/${GITHUB_REF/refs\/tags\/v}/g" cmake/CPM.cmake > dist/CPM.cmake sed "s/1.0.0-development-version/${GITHUB_REF/refs\/tags\/v}/g" cmake/CPM.cmake > dist/CPM.cmake
sed "s/0.27.2-development-version/${GITHUB_REF/refs\/tags\/v}/g" cmake/get_cpm.cmake > dist/get_cpm.cmake sed "s/1.0.0-development-version/${GITHUB_REF/refs\/tags\/v}/g" cmake/get_cpm.cmake > dist/get_cpm.cmake
- name: Upload CPM.cmake to release - name: Upload CPM.cmake to release
uses: svenstaro/upload-release-action@v1-release uses: svenstaro/upload-release-action@v1-release

28
.github/workflows/style.yml vendored Normal file
View File

@@ -0,0 +1,28 @@
name: Style
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
style:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- name: Install format dependencies
run: |
brew install clang-format
pip3 install cmake_format==0.6.11 pyyaml
- name: configure
run: cmake -Htest/style -Bbuild/style
- name: check style
run: cmake --build build/style --target check-format

1
.gitignore vendored
View File

@@ -1,3 +1,4 @@
build/
/build* /build*
/.vscode /.vscode
*.DS_Store *.DS_Store

View File

@@ -3,9 +3,11 @@
[![Actions Status](https://github.com/TheLartians/CPM.cmake/workflows/Windows/badge.svg)](https://github.com/TheLartians/CPM.cmake/actions) [![Actions Status](https://github.com/TheLartians/CPM.cmake/workflows/Windows/badge.svg)](https://github.com/TheLartians/CPM.cmake/actions)
[![Actions Status](https://github.com/TheLartians/CPM.cmake/workflows/Ubuntu/badge.svg)](https://github.com/TheLartians/CPM.cmake/actions) [![Join the chat at https://gitter.im/TheLartians/CPM.cmake](https://badges.gitter.im/TheLartians/CPM.cmake.svg)](https://gitter.im/TheLartians/CPM.cmake?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Actions Status](https://github.com/TheLartians/CPM.cmake/workflows/Ubuntu/badge.svg)](https://github.com/TheLartians/CPM.cmake/actions) [![Join the chat at https://gitter.im/TheLartians/CPM.cmake](https://badges.gitter.im/TheLartians/CPM.cmake.svg)](https://gitter.im/TheLartians/CPM.cmake?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
<br />
<p align="center"> <p align="center">
<img src="./logo/CPM.png" height="100" /> <img src="./logo/CPM.png" height="100" />
</p> </p>
<br />
# Setup-free CMake dependency management # Setup-free CMake dependency management
@@ -18,6 +20,11 @@ Any downloadable project or resource can be added as a version-controlled depend
Projects using modern CMake are automatically configured and their targets can be used immediately. Projects using modern CMake are automatically configured and their targets can be used immediately.
For everything else, the targets can be created manually after the dependency has been downloaded (see the [snippets](#snippets) below for examples). For everything else, the targets can be created manually after the dependency has been downloaded (see the [snippets](#snippets) below for examples).
## Further reading
- [CPM: An Awesome Dependency Manager for C++ with CMake](https://medium.com/swlh/cpm-an-awesome-dependency-manager-for-c-with-cmake-3c53f4376766)
- [CMake and the Future of C++ Package Management](https://ibob.github.io/blog/2020/01/13/cmake-package-management/)
## Usage ## Usage
After `CPM.cmake` has been [added](#adding-cpm) to your project, the function `CPMAddPackage` or `CPMFindPackage` can be used to fetch and configure a dependency. After `CPM.cmake` has been [added](#adding-cpm) to your project, the function `CPMAddPackage` or `CPMFindPackage` can be used to fetch and configure a dependency.
@@ -49,8 +56,6 @@ After calling `CPMAddPackage` or `CPMFindPackage`, the following variables are d
The difference between `CPMFindPackage` and `CPMAddPackage` is that `CPMFindPackage` will try to find a local dependency via CMake's `find_package` and fallback to `CPMAddPackage` if the dependency is not found. The difference between `CPMFindPackage` and `CPMAddPackage` is that `CPMFindPackage` will try to find a local dependency via CMake's `find_package` and fallback to `CPMAddPackage` if the dependency is not found.
This behaviour can be also modified globally via [CPM options](#options). This behaviour can be also modified globally via [CPM options](#options).
See [this medium article](https://medium.com/swlh/cpm-an-awesome-dependency-manager-for-c-with-cmake-3c53f4376766) for a short tutorial on using CPM.cmake.
## Full CMakeLists Example ## Full CMakeLists Example
```cmake ```cmake
@@ -206,7 +211,7 @@ If you know others, feel free to add them here through a PR.
<table> <table>
<tr> <tr>
<td> <td>
<a href="https://otto-project.github.io"> <a href="https://bitfieldaudio.com">
<p align="center"> <p align="center">
<img src="https://avatars2.githubusercontent.com/u/40357059?s=200&v=4" alt="otto-project" height=100pt width=100pt /> <img src="https://avatars2.githubusercontent.com/u/40357059?s=200&v=4" alt="otto-project" height=100pt width=100pt />
</p> </p>

View File

@@ -5,7 +5,7 @@
# MIT License # MIT License
# ----------- # -----------
#[[ #[[
Copyright (c) 2019 Lars Melchior Copyright (c) 2021 Lars Melchior and additional contributors
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal
@@ -28,21 +28,30 @@
cmake_minimum_required(VERSION 3.14 FATAL_ERROR) cmake_minimum_required(VERSION 3.14 FATAL_ERROR)
set(CURRENT_CPM_VERSION 0.27.2-development-version) set(CURRENT_CPM_VERSION 1.0.0-development-version)
if(CPM_DIRECTORY) if(CPM_DIRECTORY)
if(NOT CPM_DIRECTORY STREQUAL CMAKE_CURRENT_LIST_DIR) if(NOT CPM_DIRECTORY STREQUAL CMAKE_CURRENT_LIST_DIR)
if(CPM_VERSION VERSION_LESS CURRENT_CPM_VERSION) if(CPM_VERSION VERSION_LESS CURRENT_CPM_VERSION)
message(AUTHOR_WARNING "${CPM_INDENT} \ message(
AUTHOR_WARNING
"${CPM_INDENT} \
A dependency is using a more recent CPM version (${CURRENT_CPM_VERSION}) than the current project (${CPM_VERSION}). \ A dependency is using a more recent CPM version (${CURRENT_CPM_VERSION}) than the current project (${CPM_VERSION}). \
It is recommended to upgrade CPM to the most recent version. \ It is recommended to upgrade CPM to the most recent version. \
See https://github.com/TheLartians/CPM.cmake for more information." See https://github.com/TheLartians/CPM.cmake for more information."
) )
endif() endif()
if(${CMAKE_VERSION} VERSION_LESS "3.17.0")
include(FetchContent)
endif()
return() return()
endif() endif()
get_property(CPM_INITIALIZED GLOBAL "" PROPERTY CPM_INITIALIZED SET) get_property(
CPM_INITIALIZED GLOBAL ""
PROPERTY CPM_INITIALIZED
SET
)
if(CPM_INITIALIZED) if(CPM_INITIALIZED)
return() return()
endif() endif()
@@ -50,18 +59,44 @@ endif()
set_property(GLOBAL PROPERTY CPM_INITIALIZED true) set_property(GLOBAL PROPERTY CPM_INITIALIZED true)
option(CPM_USE_LOCAL_PACKAGES "Always try to use `find_package` to get dependencies" $ENV{CPM_USE_LOCAL_PACKAGES}) option(CPM_USE_LOCAL_PACKAGES "Always try to use `find_package` to get dependencies"
option(CPM_LOCAL_PACKAGES_ONLY "Only use `find_package` to get dependencies" $ENV{CPM_LOCAL_PACKAGES_ONLY}) $ENV{CPM_USE_LOCAL_PACKAGES}
)
option(CPM_LOCAL_PACKAGES_ONLY "Only use `find_package` to get dependencies"
$ENV{CPM_LOCAL_PACKAGES_ONLY}
)
option(CPM_DOWNLOAD_ALL "Always download dependencies from source" $ENV{CPM_DOWNLOAD_ALL}) option(CPM_DOWNLOAD_ALL "Always download dependencies from source" $ENV{CPM_DOWNLOAD_ALL})
option(CPM_DONT_UPDATE_MODULE_PATH "Don't update the module path to allow using find_package" $ENV{CPM_DONT_UPDATE_MODULE_PATH}) option(CPM_DONT_UPDATE_MODULE_PATH "Don't update the module path to allow using find_package"
option(CPM_DONT_CREATE_PACKAGE_LOCK "Don't create a package lock file in the binary path" $ENV{CPM_DONT_CREATE_PACKAGE_LOCK}) $ENV{CPM_DONT_UPDATE_MODULE_PATH}
option(CPM_INCLUDE_ALL_IN_PACKAGE_LOCK "Add all packages added through CPM.cmake to the package lock" $ENV{CPM_INCLUDE_ALL_IN_PACKAGE_LOCK}) )
option(CPM_DONT_CREATE_PACKAGE_LOCK "Don't create a package lock file in the binary path"
$ENV{CPM_DONT_CREATE_PACKAGE_LOCK}
)
option(CPM_INCLUDE_ALL_IN_PACKAGE_LOCK
"Add all packages added through CPM.cmake to the package lock"
$ENV{CPM_INCLUDE_ALL_IN_PACKAGE_LOCK}
)
set(CPM_VERSION ${CURRENT_CPM_VERSION} CACHE INTERNAL "") set(CPM_VERSION
set(CPM_DIRECTORY ${CMAKE_CURRENT_LIST_DIR} CACHE INTERNAL "") ${CURRENT_CPM_VERSION}
set(CPM_FILE ${CMAKE_CURRENT_LIST_FILE} CACHE INTERNAL "") CACHE INTERNAL ""
set(CPM_PACKAGES "" CACHE INTERNAL "") )
set(CPM_DRY_RUN OFF CACHE INTERNAL "Don't download or configure dependencies (for testing)") set(CPM_DIRECTORY
${CMAKE_CURRENT_LIST_DIR}
CACHE INTERNAL ""
)
set(CPM_FILE
${CMAKE_CURRENT_LIST_FILE}
CACHE INTERNAL ""
)
set(CPM_PACKAGES
""
CACHE INTERNAL ""
)
set(CPM_DRY_RUN
OFF
CACHE INTERNAL "Don't download or configure dependencies (for testing)"
)
if(DEFINED ENV{CPM_SOURCE_CACHE}) if(DEFINED ENV{CPM_SOURCE_CACHE})
set(CPM_SOURCE_CACHE_DEFAULT $ENV{CPM_SOURCE_CACHE}) set(CPM_SOURCE_CACHE_DEFAULT $ENV{CPM_SOURCE_CACHE})
@@ -69,20 +104,31 @@ else()
set(CPM_SOURCE_CACHE_DEFAULT OFF) set(CPM_SOURCE_CACHE_DEFAULT OFF)
endif() endif()
set(CPM_SOURCE_CACHE ${CPM_SOURCE_CACHE_DEFAULT} CACHE PATH "Directory to downlaod CPM dependencies") set(CPM_SOURCE_CACHE
${CPM_SOURCE_CACHE_DEFAULT}
CACHE PATH "Directory to download CPM dependencies"
)
if(NOT CPM_DONT_UPDATE_MODULE_PATH) if(NOT CPM_DONT_UPDATE_MODULE_PATH)
set(CPM_MODULE_PATH "${CMAKE_BINARY_DIR}/CPM_modules" CACHE INTERNAL "") set(CPM_MODULE_PATH
"${CMAKE_BINARY_DIR}/CPM_modules"
CACHE INTERNAL ""
)
# remove old modules # remove old modules
FILE(REMOVE_RECURSE ${CPM_MODULE_PATH}) file(REMOVE_RECURSE ${CPM_MODULE_PATH})
file(MAKE_DIRECTORY ${CPM_MODULE_PATH}) file(MAKE_DIRECTORY ${CPM_MODULE_PATH})
# locally added CPM modules should override global packages # locally added CPM modules should override global packages
set(CMAKE_MODULE_PATH "${CPM_MODULE_PATH};${CMAKE_MODULE_PATH}") set(CMAKE_MODULE_PATH "${CPM_MODULE_PATH};${CMAKE_MODULE_PATH}")
endif() endif()
if(NOT CPM_DONT_CREATE_PACKAGE_LOCK) if(NOT CPM_DONT_CREATE_PACKAGE_LOCK)
set(CPM_PACKAGE_LOCK_FILE "${CMAKE_BINARY_DIR}/cpm-package-lock.cmake" CACHE INTERNAL "") set(CPM_PACKAGE_LOCK_FILE
file(WRITE ${CPM_PACKAGE_LOCK_FILE} "# CPM Package Lock\n# This file should be committed to version control\n\n") "${CMAKE_BINARY_DIR}/cpm-package-lock.cmake"
CACHE INTERNAL ""
)
file(WRITE ${CPM_PACKAGE_LOCK_FILE}
"# CPM Package Lock\n# This file should be committed to version control\n\n"
)
endif() endif()
include(FetchContent) include(FetchContent)
@@ -90,7 +136,10 @@ include(CMakeParseArguments)
# Initialize logging prefix # Initialize logging prefix
if(NOT CPM_INDENT) if(NOT CPM_INDENT)
set(CPM_INDENT "CPM:") set(CPM_INDENT
"CPM:"
CACHE INTERNAL ""
)
endif() endif()
function(cpm_find_package NAME VERSION) function(cpm_find_package NAME VERSION)
@@ -99,29 +148,32 @@ function(cpm_find_package NAME VERSION)
if(${CPM_ARGS_NAME}_FOUND) if(${CPM_ARGS_NAME}_FOUND)
message(STATUS "${CPM_INDENT} using local package ${CPM_ARGS_NAME}@${VERSION}") message(STATUS "${CPM_INDENT} using local package ${CPM_ARGS_NAME}@${VERSION}")
CPMRegisterPackage(${CPM_ARGS_NAME} "${VERSION}") CPMRegisterPackage(${CPM_ARGS_NAME} "${VERSION}")
set(CPM_PACKAGE_FOUND YES PARENT_SCOPE) set(CPM_PACKAGE_FOUND
YES
PARENT_SCOPE
)
else() else()
set(CPM_PACKAGE_FOUND NO PARENT_SCOPE) set(CPM_PACKAGE_FOUND
NO
PARENT_SCOPE
)
endif() endif()
endfunction() endfunction()
# Create a custom FindXXX.cmake module for a CPM package # Create a custom FindXXX.cmake module for a CPM package This prevents `find_package(NAME)` from
# This prevents `find_package(NAME)` from finding the system library # finding the system library
function(CPMCreateModuleFile Name) function(cpm_create_module_file Name)
if(NOT CPM_DONT_UPDATE_MODULE_PATH) if(NOT CPM_DONT_UPDATE_MODULE_PATH)
# erase any previous modules # erase any previous modules
FILE(WRITE ${CPM_MODULE_PATH}/Find${Name}.cmake "include(${CPM_FILE})\n${ARGN}\nset(${Name}_FOUND TRUE)") file(WRITE ${CPM_MODULE_PATH}/Find${Name}.cmake
"include(${CPM_FILE})\n${ARGN}\nset(${Name}_FOUND TRUE)"
)
endif() endif()
endfunction() endfunction()
# Find a package locally or fallback to CPMAddPackage # Find a package locally or fallback to CPMAddPackage
function(CPMFindPackage) function(CPMFindPackage)
set(oneValueArgs set(oneValueArgs NAME VERSION GIT_TAG FIND_PACKAGE_ARGUMENTS)
NAME
VERSION
GIT_TAG
FIND_PACKAGE_ARGUMENTS
)
cmake_parse_arguments(CPM_ARGS "" "${oneValueArgs}" "" ${ARGN}) cmake_parse_arguments(CPM_ARGS "" "${oneValueArgs}" "" ${ARGN})
@@ -137,7 +189,7 @@ function(CPMFindPackage)
return() return()
endif() endif()
CPMCheckIfPackageAlreadyAdded(${CPM_ARGS_NAME} "${CPM_ARGS_VERSION}" "${CPM_ARGS_OPTIONS}") cpm_check_if_package_already_added(${CPM_ARGS_NAME} "${CPM_ARGS_VERSION}" "${CPM_ARGS_OPTIONS}")
if(CPM_PACKAGE_ALREADY_ADDED) if(CPM_PACKAGE_ALREADY_ADDED)
cpm_export_variables(${CPM_ARGS_NAME}) cpm_export_variables(${CPM_ARGS_NAME})
return() return()
@@ -153,26 +205,38 @@ function(CPMFindPackage)
endfunction() endfunction()
# checks if a package has been added before # checks if a package has been added before
function(CPMCheckIfPackageAlreadyAdded CPM_ARGS_NAME CPM_ARGS_VERSION CPM_ARGS_OPTIONS) function(cpm_check_if_package_already_added CPM_ARGS_NAME CPM_ARGS_VERSION CPM_ARGS_OPTIONS)
if("${CPM_ARGS_NAME}" IN_LIST CPM_PACKAGES) if("${CPM_ARGS_NAME}" IN_LIST CPM_PACKAGES)
CPMGetPackageVersion(${CPM_ARGS_NAME} CPM_PACKAGE_VERSION) CPMGetPackageVersion(${CPM_ARGS_NAME} CPM_PACKAGE_VERSION)
if("${CPM_PACKAGE_VERSION}" VERSION_LESS "${CPM_ARGS_VERSION}") if("${CPM_PACKAGE_VERSION}" VERSION_LESS "${CPM_ARGS_VERSION}")
message(WARNING "${CPM_INDENT} requires a newer version of ${CPM_ARGS_NAME} (${CPM_ARGS_VERSION}) than currently included (${CPM_PACKAGE_VERSION}).") message(
WARNING
"${CPM_INDENT} requires a newer version of ${CPM_ARGS_NAME} (${CPM_ARGS_VERSION}) than currently included (${CPM_PACKAGE_VERSION})."
)
endif() endif()
if(CPM_ARGS_OPTIONS) if(CPM_ARGS_OPTIONS)
foreach(OPTION ${CPM_ARGS_OPTIONS}) foreach(OPTION ${CPM_ARGS_OPTIONS})
cpm_parse_option(${OPTION}) cpm_parse_option(${OPTION})
if(NOT "${${OPTION_KEY}}" STREQUAL "${OPTION_VALUE}") if(NOT "${${OPTION_KEY}}" STREQUAL "${OPTION_VALUE}")
message(WARNING "${CPM_INDENT} ignoring package option for ${CPM_ARGS_NAME}: ${OPTION_KEY} = ${OPTION_VALUE} (${${OPTION_KEY}})") message(
WARNING
"${CPM_INDENT} ignoring package option for ${CPM_ARGS_NAME}: ${OPTION_KEY} = ${OPTION_VALUE} (${${OPTION_KEY}})"
)
endif() endif()
endforeach() endforeach()
endif() endif()
cpm_get_fetch_properties(${CPM_ARGS_NAME}) cpm_get_fetch_properties(${CPM_ARGS_NAME})
SET(${CPM_ARGS_NAME}_ADDED NO) set(${CPM_ARGS_NAME}_ADDED NO)
SET(CPM_PACKAGE_ALREADY_ADDED YES PARENT_SCOPE) set(CPM_PACKAGE_ALREADY_ADDED
YES
PARENT_SCOPE
)
cpm_export_variables(${CPM_ARGS_NAME}) cpm_export_variables(${CPM_ARGS_NAME})
else() else()
SET(CPM_PACKAGE_ALREADY_ADDED NO PARENT_SCOPE) set(CPM_PACKAGE_ALREADY_ADDED
NO
PARENT_SCOPE
)
endif() endif()
endfunction() endfunction()
@@ -195,9 +259,7 @@ function(CPMAddPackage)
GIT_SHALLOW GIT_SHALLOW
) )
set(multiValueArgs set(multiValueArgs OPTIONS)
OPTIONS
)
cmake_parse_arguments(CPM_ARGS "" "${oneValueArgs}" "${multiValueArgs}" "${ARGN}") cmake_parse_arguments(CPM_ARGS "" "${oneValueArgs}" "${multiValueArgs}" "${ARGN}")
@@ -230,6 +292,8 @@ function(CPMAddPackage)
endif() endif()
endif() endif()
set(CPM_SKIP_FETCH FALSE)
if(DEFINED CPM_ARGS_GIT_TAG) if(DEFINED CPM_ARGS_GIT_TAG)
list(APPEND CPM_ARGS_UNPARSED_ARGUMENTS GIT_TAG ${CPM_ARGS_GIT_TAG}) list(APPEND CPM_ARGS_UNPARSED_ARGUMENTS GIT_TAG ${CPM_ARGS_GIT_TAG})
# If GIT_SHALLOW is explicitly specified, honor the value. # If GIT_SHALLOW is explicitly specified, honor the value.
@@ -239,7 +303,7 @@ function(CPMAddPackage)
endif() endif()
# Check if package has been added before # Check if package has been added before
CPMCheckIfPackageAlreadyAdded(${CPM_ARGS_NAME} "${CPM_ARGS_VERSION}" "${CPM_ARGS_OPTIONS}") cpm_check_if_package_already_added(${CPM_ARGS_NAME} "${CPM_ARGS_VERSION}" "${CPM_ARGS_OPTIONS}")
if(CPM_PACKAGE_ALREADY_ADDED) if(CPM_PACKAGE_ALREADY_ADDED)
cpm_export_variables(${CPM_ARGS_NAME}) cpm_export_variables(${CPM_ARGS_NAME})
return() return()
@@ -266,7 +330,7 @@ function(CPMAddPackage)
CPMAddPackage(${declaration}) CPMAddPackage(${declaration})
cpm_export_variables(${CPM_ARGS_NAME}) cpm_export_variables(${CPM_ARGS_NAME})
# checking again to ensure version and option compatibility # checking again to ensure version and option compatibility
CPMCheckIfPackageAlreadyAdded(${CPM_ARGS_NAME} "${CPM_ARGS_VERSION}" "${CPM_ARGS_OPTIONS}") cpm_check_if_package_already_added(${CPM_ARGS_NAME} "${CPM_ARGS_VERSION}" "${CPM_ARGS_OPTIONS}")
return() return()
endif() endif()
@@ -279,7 +343,10 @@ function(CPMAddPackage)
endif() endif()
if(CPM_LOCAL_PACKAGES_ONLY) if(CPM_LOCAL_PACKAGES_ONLY)
message(SEND_ERROR "CPM: ${CPM_ARGS_NAME} not found via find_package(${CPM_ARGS_NAME} ${CPM_ARGS_VERSION})") message(
SEND_ERROR
"CPM: ${CPM_ARGS_NAME} not found via find_package(${CPM_ARGS_NAME} ${CPM_ARGS_VERSION})"
)
endif() endif()
endif() endif()
@@ -288,7 +355,10 @@ function(CPMAddPackage)
if(CPM_ARGS_OPTIONS) if(CPM_ARGS_OPTIONS)
foreach(OPTION ${CPM_ARGS_OPTIONS}) foreach(OPTION ${CPM_ARGS_OPTIONS})
cpm_parse_option(${OPTION}) cpm_parse_option(${OPTION})
set(${OPTION_KEY} ${OPTION_VALUE} CACHE INTERNAL "") set(${OPTION_KEY}
${OPTION_VALUE}
CACHE INTERNAL ""
)
endforeach() endforeach()
endif() endif()
@@ -312,12 +382,18 @@ function(CPMAddPackage)
set(download_directory ${CPM_SOURCE_CACHE}/${lower_case_name}/${origin_hash}) set(download_directory ${CPM_SOURCE_CACHE}/${lower_case_name}/${origin_hash})
list(APPEND CPM_ARGS_UNPARSED_ARGUMENTS SOURCE_DIR ${download_directory}) list(APPEND CPM_ARGS_UNPARSED_ARGUMENTS SOURCE_DIR ${download_directory})
if(EXISTS ${download_directory}) if(EXISTS ${download_directory})
# disable the download command to allow offline builds # avoid FetchContent modules to improve performance
list(APPEND CPM_ARGS_UNPARSED_ARGUMENTS DOWNLOAD_COMMAND "${CMAKE_COMMAND}") set(${CPM_ARGS_NAME}_BINARY_DIR ${CMAKE_BINARY_DIR}/_deps/${lower_case_name}-build)
set(PACKAGE_INFO "${download_directory}") set(${CPM_ARGS_NAME}_ADDED YES)
set(${CPM_ARGS_NAME}_SOURCE_DIR ${download_directory})
if(NOT CPM_ARGS_DOWNLOAD_ONLY AND EXISTS ${download_directory}/CMakeLists.txt)
add_subdirectory(${download_directory} ${${CPM_ARGS_NAME}_BINARY_DIR})
endif()
set(CPM_SKIP_FETCH TRUE)
set(PACKAGE_INFO "${PACKAGE_INFO} at ${download_directory}")
else() else()
# Enable shallow clone when GIT_TAG is not a commit hash. # Enable shallow clone when GIT_TAG is not a commit hash. Our guess may not be accurate, but
# Our guess may not be accurate, but it should guarantee no commit hash get mis-detected. # it should guarantee no commit hash get mis-detected.
if(NOT DEFINED CPM_ARGS_GIT_SHALLOW) if(NOT DEFINED CPM_ARGS_GIT_SHALLOW)
cpm_is_git_tag_commit_hash("${CPM_ARGS_GIT_TAG}" IS_HASH) cpm_is_git_tag_commit_hash("${CPM_ARGS_GIT_TAG}" IS_HASH)
if(NOT ${IS_HASH}) if(NOT ${IS_HASH})
@@ -327,11 +403,11 @@ function(CPMAddPackage)
# remove timestamps so CMake will re-download the dependency # remove timestamps so CMake will re-download the dependency
file(REMOVE_RECURSE ${CMAKE_BINARY_DIR}/_deps/${lower_case_name}-subbuild) file(REMOVE_RECURSE ${CMAKE_BINARY_DIR}/_deps/${lower_case_name}-subbuild)
set(PACKAGE_INFO "${PACKAGE_INFO} -> ${download_directory}") set(PACKAGE_INFO "${PACKAGE_INFO} to ${download_directory}")
endif() endif()
endif() endif()
CPMCreateModuleFile(${CPM_ARGS_NAME} "CPMAddPackage(${ARGN})") cpm_create_module_file(${CPM_ARGS_NAME} "CPMAddPackage(${ARGN})")
if(CPM_PACKAGE_LOCK_ENABLED) if(CPM_PACKAGE_LOCK_ENABLED)
if((CPM_ARGS_VERSION AND NOT CPM_ARGS_SOURCE_DIR) OR CPM_INCLUDE_ALL_IN_PACKAGE_LOCK) if((CPM_ARGS_VERSION AND NOT CPM_ARGS_SOURCE_DIR) OR CPM_INCLUDE_ALL_IN_PACKAGE_LOCK)
@@ -343,36 +419,49 @@ function(CPMAddPackage)
endif() endif()
endif() endif()
cpm_declare_fetch("${CPM_ARGS_NAME}" "${CPM_ARGS_VERSION}" "${PACKAGE_INFO}" "${CPM_ARGS_UNPARSED_ARGUMENTS}") message(
STATUS "${CPM_INDENT} adding package ${CPM_ARGS_NAME}@${CPM_ARGS_VERSION} (${PACKAGE_INFO})"
)
if(NOT CPM_SKIP_FETCH)
cpm_declare_fetch(
"${CPM_ARGS_NAME}" "${CPM_ARGS_VERSION}" "${PACKAGE_INFO}" "${CPM_ARGS_UNPARSED_ARGUMENTS}"
)
cpm_fetch_package("${CPM_ARGS_NAME}" "${DOWNLOAD_ONLY}") cpm_fetch_package("${CPM_ARGS_NAME}" "${DOWNLOAD_ONLY}")
cpm_get_fetch_properties("${CPM_ARGS_NAME}") cpm_get_fetch_properties("${CPM_ARGS_NAME}")
endif()
SET(${CPM_ARGS_NAME}_ADDED YES) set(${CPM_ARGS_NAME}_ADDED YES)
cpm_export_variables("${CPM_ARGS_NAME}") cpm_export_variables("${CPM_ARGS_NAME}")
endfunction() endfunction()
# Fetch a previously declared package # Fetch a previously declared package
macro(CPMGetPackage Name) macro(CPMGetPackage Name)
if(DEFINED "CPM_DECLARATION_${Name}") if(DEFINED "CPM_DECLARATION_${Name}")
CPMAddPackage( CPMAddPackage(NAME ${Name})
NAME ${Name}
)
else() else()
message(SEND_ERROR "Cannot retrieve package ${Name}: no declaration available") message(SEND_ERROR "Cannot retrieve package ${Name}: no declaration available")
endif() endif()
endmacro() endmacro()
# export variables available to the caller to the parent scope # export variables available to the caller to the parent scope expects ${CPM_ARGS_NAME} to be set
# expects ${CPM_ARGS_NAME} to be set
macro(cpm_export_variables name) macro(cpm_export_variables name)
SET(${name}_SOURCE_DIR "${${name}_SOURCE_DIR}" PARENT_SCOPE) set(${name}_SOURCE_DIR
SET(${name}_BINARY_DIR "${${name}_BINARY_DIR}" PARENT_SCOPE) "${${name}_SOURCE_DIR}"
SET(${name}_ADDED "${${name}_ADDED}" PARENT_SCOPE) PARENT_SCOPE
)
set(${name}_BINARY_DIR
"${${name}_BINARY_DIR}"
PARENT_SCOPE
)
set(${name}_ADDED
"${${name}_ADDED}"
PARENT_SCOPE
)
endmacro() endmacro()
# declares a package, so that any call to CPMAddPackage for the # declares a package, so that any call to CPMAddPackage for the package name will use these
# package name will use these arguments instead. # arguments instead. Previous declarations will not be overriden.
# Previous declarations will not be overriden.
macro(CPMDeclarePackage Name) macro(CPMDeclarePackage Name)
if(NOT DEFINED "CPM_DECLARATION_${Name}") if(NOT DEFINED "CPM_DECLARATION_${Name}")
set("CPM_DECLARATION_${Name}" "${ARGN}") set("CPM_DECLARATION_${Name}" "${ARGN}")
@@ -381,18 +470,22 @@ endmacro()
function(cpm_add_to_package_lock Name) function(cpm_add_to_package_lock Name)
if(NOT CPM_DONT_CREATE_PACKAGE_LOCK) if(NOT CPM_DONT_CREATE_PACKAGE_LOCK)
file(APPEND ${CPM_PACKAGE_LOCK_FILE} "# ${Name}\nCPMDeclarePackage(${Name} \"${ARGN}\")\n") cpm_prettify_package_arguments(PRETTY_ARGN false ${ARGN})
file(APPEND ${CPM_PACKAGE_LOCK_FILE} "# ${Name}\nCPMDeclarePackage(${Name}\n${PRETTY_ARGN})\n")
endif() endif()
endfunction() endfunction()
function(cpm_add_comment_to_package_lock Name) function(cpm_add_comment_to_package_lock Name)
if(NOT CPM_DONT_CREATE_PACKAGE_LOCK) if(NOT CPM_DONT_CREATE_PACKAGE_LOCK)
file(APPEND ${CPM_PACKAGE_LOCK_FILE} "# ${Name} (unversioned)\n# CPMDeclarePackage(${Name} \"${ARGN}\")\n") cpm_prettify_package_arguments(PRETTY_ARGN true ${ARGN})
file(APPEND ${CPM_PACKAGE_LOCK_FILE}
"# ${Name} (unversioned)\n# CPMDeclarePackage(${Name}\n${PRETTY_ARGN}#)\n"
)
endif() endif()
endfunction() endfunction()
# includes the package lock file if it exists and creates a target # includes the package lock file if it exists and creates a target `cpm-write-package-lock` to
# `cpm-write-package-lock` to update it # update it
macro(CPMUsePackageLock file) macro(CPMUsePackageLock file)
if(NOT CPM_DONT_CREATE_PACKAGE_LOCK) if(NOT CPM_DONT_CREATE_PACKAGE_LOCK)
get_filename_component(CPM_ABSOLUTE_PACKAGE_LOCK_PATH ${file} ABSOLUTE) get_filename_component(CPM_ABSOLUTE_PACKAGE_LOCK_PATH ${file} ABSOLUTE)
@@ -400,7 +493,10 @@ macro(CPMUsePackageLock file)
include(${CPM_ABSOLUTE_PACKAGE_LOCK_PATH}) include(${CPM_ABSOLUTE_PACKAGE_LOCK_PATH})
endif() endif()
if(NOT TARGET cpm-update-package-lock) if(NOT TARGET cpm-update-package-lock)
add_custom_target(cpm-update-package-lock COMMAND ${CMAKE_COMMAND} -E copy ${CPM_PACKAGE_LOCK_FILE} ${CPM_ABSOLUTE_PACKAGE_LOCK_PATH}) add_custom_target(
cpm-update-package-lock COMMAND ${CMAKE_COMMAND} -E copy ${CPM_PACKAGE_LOCK_FILE}
${CPM_ABSOLUTE_PACKAGE_LOCK_PATH}
)
endif() endif()
set(CPM_PACKAGE_LOCK_ENABLED true) set(CPM_PACKAGE_LOCK_ENABLED true)
endif() endif()
@@ -409,27 +505,32 @@ endmacro()
# registers a package that has been added to CPM # registers a package that has been added to CPM
function(CPMRegisterPackage PACKAGE VERSION) function(CPMRegisterPackage PACKAGE VERSION)
list(APPEND CPM_PACKAGES ${PACKAGE}) list(APPEND CPM_PACKAGES ${PACKAGE})
set(CPM_PACKAGES ${CPM_PACKAGES} CACHE INTERNAL "") set(CPM_PACKAGES
set("CPM_PACKAGE_${PACKAGE}_VERSION" ${VERSION} CACHE INTERNAL "") ${CPM_PACKAGES}
CACHE INTERNAL ""
)
set("CPM_PACKAGE_${PACKAGE}_VERSION"
${VERSION}
CACHE INTERNAL ""
)
endfunction() endfunction()
# retrieve the current version of the package to ${OUTPUT} # retrieve the current version of the package to ${OUTPUT}
function(CPMGetPackageVersion PACKAGE OUTPUT) function(CPMGetPackageVersion PACKAGE OUTPUT)
set(${OUTPUT} "${CPM_PACKAGE_${PACKAGE}_VERSION}" PARENT_SCOPE) set(${OUTPUT}
"${CPM_PACKAGE_${PACKAGE}_VERSION}"
PARENT_SCOPE
)
endfunction() endfunction()
# declares a package in FetchContent_Declare # declares a package in FetchContent_Declare
function(cpm_declare_fetch PACKAGE VERSION INFO) function(cpm_declare_fetch PACKAGE VERSION INFO)
message(STATUS "${CPM_INDENT} adding package ${PACKAGE}@${VERSION} (${INFO})")
if(${CPM_DRY_RUN}) if(${CPM_DRY_RUN})
message(STATUS "${CPM_INDENT} package not declared (dry run)") message(STATUS "${CPM_INDENT} package not declared (dry run)")
return() return()
endif() endif()
FetchContent_Declare(${PACKAGE} FetchContent_Declare(${PACKAGE} ${ARGN})
${ARGN}
)
endfunction() endfunction()
# returns properties for a package previously defined by cpm_declare_fetch # returns properties for a package previously defined by cpm_declare_fetch
@@ -439,8 +540,14 @@ function (cpm_get_fetch_properties PACKAGE)
endif() endif()
FetchContent_GetProperties(${PACKAGE}) FetchContent_GetProperties(${PACKAGE})
string(TOLOWER ${PACKAGE} lpackage) string(TOLOWER ${PACKAGE} lpackage)
SET(${PACKAGE}_SOURCE_DIR "${${lpackage}_SOURCE_DIR}" PARENT_SCOPE) set(${PACKAGE}_SOURCE_DIR
SET(${PACKAGE}_BINARY_DIR "${${lpackage}_BINARY_DIR}" PARENT_SCOPE) "${${lpackage}_SOURCE_DIR}"
PARENT_SCOPE
)
set(${PACKAGE}_BINARY_DIR
"${${lpackage}_BINARY_DIR}"
PARENT_SCOPE
)
endfunction() endfunction()
# downloads a previously declared package via FetchContent # downloads a previously declared package via FetchContent
@@ -475,8 +582,14 @@ function(cpm_parse_option OPTION)
math(EXPR OPTION_KEY_LENGTH "${OPTION_KEY_LENGTH}+1") math(EXPR OPTION_KEY_LENGTH "${OPTION_KEY_LENGTH}+1")
string(SUBSTRING ${OPTION} "${OPTION_KEY_LENGTH}" "-1" OPTION_VALUE) string(SUBSTRING ${OPTION} "${OPTION_KEY_LENGTH}" "-1" OPTION_VALUE)
endif() endif()
set(OPTION_KEY "${OPTION_KEY}" PARENT_SCOPE) set(OPTION_KEY
set(OPTION_VALUE "${OPTION_VALUE}" PARENT_SCOPE) "${OPTION_KEY}"
PARENT_SCOPE
)
set(OPTION_VALUE
"${OPTION_VALUE}"
PARENT_SCOPE
)
endfunction() endfunction()
# guesses the package version from a git tag # guesses the package version from a git tag
@@ -484,10 +597,16 @@ function(cpm_get_version_from_git_tag GIT_TAG RESULT)
string(LENGTH ${GIT_TAG} length) string(LENGTH ${GIT_TAG} length)
if(length EQUAL 40) if(length EQUAL 40)
# GIT_TAG is probably a git hash # GIT_TAG is probably a git hash
SET(${RESULT} 0 PARENT_SCOPE) set(${RESULT}
0
PARENT_SCOPE
)
else() else()
string(REGEX MATCH "v?([0123456789.]*).*" _ ${GIT_TAG}) string(REGEX MATCH "v?([0123456789.]*).*" _ ${GIT_TAG})
SET(${RESULT} ${CMAKE_MATCH_1} PARENT_SCOPE) set(${RESULT}
${CMAKE_MATCH_1}
PARENT_SCOPE
)
endif() endif()
endfunction() endfunction()
@@ -496,12 +615,86 @@ function(cpm_is_git_tag_commit_hash GIT_TAG RESULT)
string(LENGTH "${GIT_TAG}" length) string(LENGTH "${GIT_TAG}" length)
# full hash has 40 characters, and short hash has at least 7 characters. # full hash has 40 characters, and short hash has at least 7 characters.
if(length LESS 7 OR length GREATER 40) if(length LESS 7 OR length GREATER 40)
SET(${RESULT} 0 PARENT_SCOPE) set(${RESULT}
0
PARENT_SCOPE
)
else() else()
if(${GIT_TAG} MATCHES "^[a-fA-F0-9]+$") if(${GIT_TAG} MATCHES "^[a-fA-F0-9]+$")
SET(${RESULT} 1 PARENT_SCOPE) set(${RESULT}
1
PARENT_SCOPE
)
else() else()
SET(${RESULT} 0 PARENT_SCOPE) set(${RESULT}
0
PARENT_SCOPE
)
endif() endif()
endif() endif()
endfunction() endfunction()
function(cpm_prettify_package_arguments OUT_VAR IS_IN_COMMENT)
set(oneValueArgs
NAME
FORCE
VERSION
GIT_TAG
DOWNLOAD_ONLY
GITHUB_REPOSITORY
GITLAB_REPOSITORY
GIT_REPOSITORY
SOURCE_DIR
DOWNLOAD_COMMAND
FIND_PACKAGE_ARGUMENTS
NO_CACHE
GIT_SHALLOW
)
set(multiValueArgs OPTIONS)
cmake_parse_arguments(CPM_ARGS "" "${oneValueArgs}" "${multiValueArgs}" ${ARGN})
foreach(oneArgName ${oneValueArgs})
if(DEFINED CPM_ARGS_${oneArgName})
if(${IS_IN_COMMENT})
string(APPEND PRETTY_OUT_VAR "#")
endif()
if(${oneArgName} STREQUAL "SOURCE_DIR")
string(REPLACE ${CMAKE_SOURCE_DIR} "\${CMAKE_SOURCE_DIR}" CPM_ARGS_${oneArgName}
${CPM_ARGS_${oneArgName}}
)
endif()
string(APPEND PRETTY_OUT_VAR " ${oneArgName} ${CPM_ARGS_${oneArgName}}\n")
endif()
endforeach()
foreach(multiArgName ${multiValueArgs})
if(DEFINED CPM_ARGS_${multiArgName})
if(${IS_IN_COMMENT})
string(APPEND PRETTY_OUT_VAR "#")
endif()
string(APPEND PRETTY_OUT_VAR " ${multiArgName}\n")
foreach(singleOption ${CPM_ARGS_${multiArgName}})
if(${IS_IN_COMMENT})
string(APPEND PRETTY_OUT_VAR "#")
endif()
string(APPEND PRETTY_OUT_VAR " \"${singleOption}\"\n")
endforeach()
endif()
endforeach()
if(NOT "${CPM_ARGS_UNPARSED_ARGUMENTS}" STREQUAL "")
if(${IS_IN_COMMENT})
string(APPEND PRETTY_OUT_VAR "#")
endif()
string(APPEND PRETTY_OUT_VAR " ")
foreach(CPM_ARGS_UNPARSED_ARGUMENT ${CPM_ARGS_UNPARSED_ARGUMENTS})
string(APPEND PRETTY_OUT_VAR " ${CPM_ARGS_UNPARSED_ARGUMENT}")
endforeach()
string(APPEND PRETTY_OUT_VAR "\n")
endif()
set(${OUT_VAR}
${PRETTY_OUT_VAR}
PARENT_SCOPE
)
endfunction()

View File

@@ -1,6 +1,8 @@
set(CPM_DOWNLOAD_VERSION 0.27.2-development-version) set(CPM_DOWNLOAD_VERSION 1.0.0-development-version)
if(CPM_SOURCE_CACHE) if(CPM_SOURCE_CACHE)
# Expand relative path. This is important if the provided path contains a tilde (~)
get_filename_component(CPM_SOURCE_CACHE ${CPM_SOURCE_CACHE} ABSOLUTE)
set(CPM_DOWNLOAD_LOCATION "${CPM_SOURCE_CACHE}/cpm/CPM_${CPM_DOWNLOAD_VERSION}.cmake") set(CPM_DOWNLOAD_LOCATION "${CPM_SOURCE_CACHE}/cpm/CPM_${CPM_DOWNLOAD_VERSION}.cmake")
elseif(DEFINED ENV{CPM_SOURCE_CACHE}) elseif(DEFINED ENV{CPM_SOURCE_CACHE})
set(CPM_DOWNLOAD_LOCATION "$ENV{CPM_SOURCE_CACHE}/cpm/CPM_${CPM_DOWNLOAD_VERSION}.cmake") set(CPM_DOWNLOAD_LOCATION "$ENV{CPM_SOURCE_CACHE}/cpm/CPM_${CPM_DOWNLOAD_VERSION}.cmake")

View File

@@ -1,4 +1,3 @@
function(ASSERT_EQUAL) function(ASSERT_EQUAL)
if(NOT ARGC EQUAL 2) if(NOT ARGC EQUAL 2)
message(FATAL_ERROR "assertion failed: invalid argument count: ${ARGC}") message(FATAL_ERROR "assertion failed: invalid argument count: ${ARGC}")
@@ -17,18 +16,38 @@ function(ASSERT_EMPTY)
endif() endif()
endfunction() endfunction()
function(ASSERT_DEFINED KEY)
if(DEFINED ${KEY})
message(STATUS "test passed: '${KEY}' is defined")
else()
message(FATAL_ERROR "assertion failed: '${KEY}' is not defiend")
endif()
endfunction()
function(ASSERT_TRUTHY KEY)
if(${${KEY}})
message(STATUS "test passed: '${KEY}' is set truthy")
else()
message(FATAL_ERROR "assertion failed: value of '${KEY}' is not true (${${KEY}})")
endif()
endfunction()
function(ASSERTION_FAILED) function(ASSERTION_FAILED)
message(FATAL_ERROR "assertion failed: ${ARGN}") message(FATAL_ERROR "assertion failed: ${ARGN}")
endfunction() endfunction()
function(ASSERT_EXISTS file) function(ASSERT_EXISTS file)
if (NOT EXISTS ${file}) if(EXISTS ${file})
message(STATUS "test passed: '${file}' exists")
else()
message(FATAL_ERROR "assertion failed: file ${file} does not exist") message(FATAL_ERROR "assertion failed: file ${file} does not exist")
endif() endif()
endfunction() endfunction()
function(ASSERT_NOT_EXISTS file) function(ASSERT_NOT_EXISTS file)
if (EXISTS ${file}) if(NOT EXISTS ${file})
message(STATUS "test passed: '${file}' does not exist")
else()
message(FATAL_ERROR "assertion failed: file ${file} exists") message(FATAL_ERROR "assertion failed: file ${file} exists")
endif() endif()
endfunction() endfunction()

View File

@@ -10,33 +10,25 @@ find_package(Threads REQUIRED)
CPMAddPackage( CPMAddPackage(
NAME asio NAME asio
VERSION 1.16.1 VERSION 1.18.1
GITHUB_REPOSITORY chriskohlhoff/asio GITHUB_REPOSITORY chriskohlhoff/asio
GIT_TAG asio-1-16-1 # asio uses non-standard version tag, we must specify GIT_TAG GIT_TAG asio-1-18-1 # asio uses non-standard version tag, we must specify GIT_TAG
) )
# ASIO doesn't use CMake, we have to configure it manually. # ASIO doesn't use CMake, we have to configure it manually. Extra notes for using on Windows:
# Extra notes for using on Windows: #
# 1) If _WIN32_WINNT is not set, ASIO assumes _WIN32_WINNT=0x0501, i.e. Windows XP target, # 1) If _WIN32_WINNT is not set, ASIO assumes _WIN32_WINNT=0x0501, i.e. Windows XP target, which is
# which is definitely not the platform which most users target. # definitely not the platform which most users target.
#
# 2) WIN32_LEAN_AND_MEAN is defined to make Winsock2 work. # 2) WIN32_LEAN_AND_MEAN is defined to make Winsock2 work.
if(asio_ADDED) if(asio_ADDED)
add_library(asio INTERFACE) add_library(asio INTERFACE)
target_include_directories(asio target_include_directories(asio SYSTEM INTERFACE ${asio_SOURCE_DIR}/asio/include)
INTERFACE ${asio_SOURCE_DIR}/asio/include
)
target_compile_definitions(asio target_compile_definitions(asio INTERFACE ASIO_STANDALONE ASIO_NO_DEPRECATED)
INTERFACE
ASIO_STANDALONE
ASIO_NO_DEPRECATED
)
target_link_libraries(asio target_link_libraries(asio INTERFACE Threads::Threads)
INTERFACE
Threads::Threads
)
if(WIN32) if(WIN32)
# macro see @ https://stackoverflow.com/a/40217291/1746503 # macro see @ https://stackoverflow.com/a/40217291/1746503
@@ -65,11 +57,7 @@ if(asio_ADDED)
message(STATUS "Set _WIN32_WINNET=${_WIN32_WINNT}") message(STATUS "Set _WIN32_WINNET=${_WIN32_WINNT}")
target_compile_definitions(asio target_compile_definitions(asio INTERFACE _WIN32_WINNT=${_WIN32_WINNT} WIN32_LEAN_AND_MEAN)
INTERFACE
_WIN32_WINNT=${_WIN32_WINNT}
WIN32_LEAN_AND_MEAN
)
endif() endif()
endif() endif()
@@ -77,3 +65,4 @@ endif()
add_executable(CPMExampleASIOStandalone main.cpp) add_executable(CPMExampleASIOStandalone main.cpp)
target_link_libraries(CPMExampleASIOStandalone asio) target_link_libraries(CPMExampleASIOStandalone asio)
target_compile_features(CPMExampleASIOStandalone PRIVATE cxx_std_11)

View File

@@ -20,42 +20,28 @@
using asio::ip::tcp; using asio::ip::tcp;
class session class session : public std::enable_shared_from_this<session> {
: public std::enable_shared_from_this<session>
{
public: public:
session(tcp::socket socket) session(tcp::socket socket) : socket_(std::move(socket)) {}
: socket_(std::move(socket))
{
}
void start() void start() { do_read(); }
{
do_read();
}
private: private:
void do_read() void do_read() {
{
auto self(shared_from_this()); auto self(shared_from_this());
socket_.async_read_some(asio::buffer(data_, max_length), socket_.async_read_some(asio::buffer(data_, max_length),
[this, self](std::error_code ec, std::size_t length) [this, self](std::error_code ec, std::size_t length) {
{ if (!ec) {
if (!ec)
{
do_write(length); do_write(length);
} }
}); });
} }
void do_write(std::size_t length) void do_write(std::size_t length) {
{
auto self(shared_from_this()); auto self(shared_from_this());
asio::async_write(socket_, asio::buffer(data_, length), asio::async_write(socket_, asio::buffer(data_, length),
[this, self](std::error_code ec, std::size_t /*length*/) [this, self](std::error_code ec, std::size_t /*length*/) {
{ if (!ec) {
if (!ec)
{
do_read(); do_read();
} }
}); });
@@ -66,23 +52,17 @@ private:
char data_[max_length]; char data_[max_length];
}; };
class server class server {
{
public: public:
server(asio::io_context& io_context, short port) server(asio::io_context& io_context, short port)
: acceptor_(io_context, tcp::endpoint(tcp::v4(), port)) : acceptor_(io_context, tcp::endpoint(tcp::v4(), port)) {
{
do_accept(); do_accept();
} }
private: private:
void do_accept() void do_accept() {
{ acceptor_.async_accept([this](std::error_code ec, tcp::socket socket) {
acceptor_.async_accept( if (!ec) {
[this](std::error_code ec, tcp::socket socket)
{
if (!ec)
{
std::make_shared<session>(std::move(socket))->start(); std::make_shared<session>(std::move(socket))->start();
} }
@@ -93,12 +73,9 @@ private:
tcp::acceptor acceptor_; tcp::acceptor acceptor_;
}; };
int main(int argc, char* argv[]) int main(int argc, char* argv[]) {
{ try {
try if (argc != 2) {
{
if (argc != 2)
{
std::cerr << "Usage: async_tcp_echo_server <port>\n"; std::cerr << "Usage: async_tcp_echo_server <port>\n";
return 1; return 1;
} }
@@ -108,9 +85,7 @@ int main(int argc, char* argv[])
server s(io_context, std::atoi(argv[1])); server s(io_context, std::atoi(argv[1]));
io_context.run(); io_context.run();
} } catch (std::exception& e) {
catch (std::exception& e)
{
std::cerr << "Exception: " << e.what() << "\n"; std::cerr << "Exception: " << e.what() << "\n";
} }

View File

@@ -15,18 +15,17 @@ CPMAddPackage(
CPMAddPackage( CPMAddPackage(
NAME benchmark NAME benchmark
GITHUB_REPOSITORY google/benchmark GITHUB_REPOSITORY google/benchmark
VERSION 1.5.0 VERSION 1.5.2
OPTIONS OPTIONS "BENCHMARK_ENABLE_TESTING Off"
"BENCHMARK_ENABLE_TESTING Off"
) )
if(benchmark_ADDED) if(benchmark_ADDED)
# patch google benchmark target # Don't use C++14 because it doesn't work in some configurations.
set_target_properties(benchmark PROPERTIES CXX_STANDARD 17) set_target_properties(benchmark PROPERTIES CXX_STANDARD 11)
endif() endif()
# ---- Executable ---- # ---- Executable ----
add_executable(CPMExampleBenchmark "main.cpp") add_executable(CPMExampleBenchmark "main.cpp")
set_target_properties(CPMExampleBenchmark PROPERTIES CXX_STANDARD 17)
target_link_libraries(CPMExampleBenchmark fibonacci benchmark) target_link_libraries(CPMExampleBenchmark fibonacci benchmark)
target_compile_features(CPMExampleBenchmark PRIVATE cxx_std_17)

View File

@@ -1,10 +1,9 @@
#include <benchmark/benchmark.h> #include <benchmark/benchmark.h>
#include <vector>
#include <algorithm>
#include <random>
#include <fibonacci.h> #include <fibonacci.h>
#include <algorithm>
#include <random>
#include <vector>
std::vector<unsigned> createTestNumbers() { std::vector<unsigned> createTestNumbers() {
std::vector<unsigned> v; std::vector<unsigned> v;

View File

@@ -5,7 +5,7 @@ project(CPMExampleBoost)
# ---- Create binary ---- # ---- Create binary ----
add_executable(CPMExampleBoost main.cpp) add_executable(CPMExampleBoost main.cpp)
set_target_properties(CPMExampleBoost PROPERTIES CXX_STANDARD 17) target_compile_features(CPMExampleBoost PRIVATE cxx_std_17)
# ---- Dependencies ---- # ---- Dependencies ----
@@ -18,4 +18,6 @@ CPMFindPackage(
FIND_PACKAGE_ARGUMENTS "COMPONENTS system" FIND_PACKAGE_ARGUMENTS "COMPONENTS system"
) )
target_link_libraries(CPMExampleBoost PRIVATE Boost::system pthread) find_package(Threads REQUIRED)
target_link_libraries(CPMExampleBoost PRIVATE Boost::system Threads::Threads)

View File

@@ -8,17 +8,13 @@
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
// //
#include <iostream>
#include <boost/asio.hpp> #include <boost/asio.hpp>
#include <boost/date_time/posix_time/posix_time.hpp> #include <boost/date_time/posix_time/posix_time.hpp>
#include <iostream>
void print(const boost::system::error_code& /*e*/) void print(const boost::system::error_code& /*e*/) { std::cout << "Hello, world!" << std::endl; }
{
std::cout << "Hello, world!" << std::endl;
}
int main() int main() {
{
boost::asio::io_service io; boost::asio::io_service io;
boost::asio::deadline_timer t(io, boost::posix_time::seconds(1)); boost::asio::deadline_timer t(io, boost::posix_time::seconds(1));

View File

@@ -1,5 +1,7 @@
#!/usr/bin/python3 #!/usr/bin/python3
import os
from pathlib import Path from pathlib import Path
from subprocess import PIPE, run from subprocess import PIPE, run
@@ -9,6 +11,7 @@ examples = [
assert(len(examples) > 0) assert(len(examples) > 0)
def runCommand(command): def runCommand(command):
print('- %s' % command) print('- %s' % command)
result = run(command, stdout=PIPE, stderr=PIPE, universal_newlines=True, shell=True) result = run(command, stdout=PIPE, stderr=PIPE, universal_newlines=True, shell=True)
@@ -17,6 +20,7 @@ def runCommand(command):
exit(result.returncode) exit(result.returncode)
return result.stdout return result.stdout
print('') print('')
for example in examples: for example in examples:
print("running example %s" % example.name) print("running example %s" % example.name)
@@ -24,6 +28,6 @@ for example in examples:
project = Path(".") / 'build' / example.name project = Path(".") / 'build' / example.name
configure = runCommand('cmake -H%s -B%s' % (example, project)) configure = runCommand('cmake -H%s -B%s' % (example, project))
print(' ' + '\n '.join([line for line in configure.split('\n') if 'CPM:' in line])) print(' ' + '\n '.join([line for line in configure.split('\n') if 'CPM:' in line]))
build = runCommand('cmake --build %s -j4' % (project)) build = runCommand('cmake --build %s -- -j%i' % (project, os.cpu_count() / 2))
print(' ' + '\n '.join([line for line in build.split('\n') if 'Built target' in line])) print(' ' + '\n '.join([line for line in build.split('\n') if 'Built target' in line]))
print('') print('')

View File

@@ -15,16 +15,16 @@ CPMAddPackage(
CPMAddPackage( CPMAddPackage(
NAME Catch2 NAME Catch2
GITHUB_REPOSITORY catchorg/Catch2 GITHUB_REPOSITORY catchorg/Catch2
VERSION 2.5.0 VERSION 2.13.4
) )
# ---- Create binary ---- # ---- Create binary ----
add_executable(CPMExampleCatch2 main.cpp) add_executable(CPMExampleCatch2 main.cpp)
target_link_libraries(CPMExampleCatch2 fibonacci Catch2) target_link_libraries(CPMExampleCatch2 fibonacci Catch2)
set_target_properties(CPMExampleCatch2 PROPERTIES CXX_STANDARD 17) target_compile_features(CPMExampleCatch2 PRIVATE cxx_std_17)
# ---- Enable testing ---- # ---- Enable testing ----
ENABLE_TESTING() enable_testing()
ADD_TEST(CPMExampleCatch2 CPMExampleCatch2) add_test(CPMExampleCatch2 CPMExampleCatch2)

View File

@@ -1,8 +1,9 @@
#define CATCH_CONFIG_MAIN #define CATCH_CONFIG_MAIN
#include <catch2/catch.hpp>
#include <fibonacci.h> #include <fibonacci.h>
#include <catch2/catch.hpp>
TEST_CASE("fibonacci") { TEST_CASE("fibonacci") {
REQUIRE(fibonacci(0) == 0); REQUIRE(fibonacci(0) == 0);
REQUIRE(fibonacci(1) == 1); REQUIRE(fibonacci(1) == 1);

View File

@@ -8,15 +8,13 @@ include(../../cmake/CPM.cmake)
CPMAddPackage( CPMAddPackage(
NAME cereal NAME cereal
VERSION 1.2.2 VERSION 1.3.0
GITHUB_REPOSITORY USCiLab/cereal GITHUB_REPOSITORY USCiLab/cereal
OPTIONS OPTIONS "SKIP_PORTABILITY_TEST ON" "JUST_INSTALL_CEREAL ON"
"SKIP_PORTABILITY_TEST ON"
"JUST_INSTALL_CEREAL ON"
) )
# ---- Create binary ---- # ---- Create binary ----
add_executable(CPMExampleCereal main.cpp) add_executable(CPMExampleCereal main.cpp)
target_link_libraries(CPMExampleCereal cereal) target_link_libraries(CPMExampleCereal cereal)
set_target_properties(CPMExampleCereal PROPERTIES CXX_STANDARD 17) target_compile_features(CPMExampleCereal PRIVATE cxx_std_17)

View File

@@ -1,28 +1,20 @@
#define CATCH_CONFIG_MAIN #define CATCH_CONFIG_MAIN
#include <cereal/cereal.hpp>
#include <cereal/archives/json.hpp> #include <cereal/archives/json.hpp>
#include <cereal/cereal.hpp>
#include <string>
#include <sstream> #include <sstream>
#include <string>
struct player_data struct player_data {
{
int id{-1}; int id{-1};
std::string name{}; std::string name{};
}; };
template<typename Archive> template <typename Archive> void serialize(Archive &archive, player_data const &data) {
void serialize(Archive& archive, player_data const &data) archive(cereal::make_nvp("id", data.id), cereal::make_nvp("name", data.name));
{
archive(
cereal::make_nvp("id", data.id),
cereal::make_nvp("name", data.name)
);
} }
int main(int argc, char const *argv[]) int main(int argc, char const *argv[]) {
{
player_data player{3, "Gamer One"}; player_data player{3, "Gamer One"};
std::ostringstream oss; std::ostringstream oss;
cereal::JSONOutputArchive output(oss); cereal::JSONOutputArchive output(oss);

View File

@@ -10,13 +10,11 @@ CPMAddPackage(
NAME cxxopts NAME cxxopts
GITHUB_REPOSITORY jarro2783/cxxopts GITHUB_REPOSITORY jarro2783/cxxopts
VERSION 2.2.0 VERSION 2.2.0
OPTIONS OPTIONS "CXXOPTS_BUILD_EXAMPLES Off" "CXXOPTS_BUILD_TESTS Off"
"CXXOPTS_BUILD_EXAMPLES Off"
"CXXOPTS_BUILD_TESTS Off"
) )
# ---- Create binary ---- # ---- Create binary ----
add_executable(CPMExampleCXXOpts main.cpp) add_executable(CPMExampleCXXOpts main.cpp)
target_link_libraries(CPMExampleCXXOpts cxxopts) target_link_libraries(CPMExampleCXXOpts cxxopts)
set_target_properties(CPMExampleCXXOpts PROPERTIES CXX_STANDARD 17) target_compile_features(CPMExampleCXXOpts PRIVATE cxx_std_17)

View File

@@ -3,10 +3,8 @@
int main(int argc, char** argv) { int main(int argc, char** argv) {
cxxopts::Options options("MyProgram", "One line description of MyProgram"); cxxopts::Options options("MyProgram", "One line description of MyProgram");
options.add_options() options.add_options()("h,help", "Show help")("d,debug", "Enable debugging")(
("h,help", "Show help") "f,file", "File name", cxxopts::value<std::string>());
("d,debug", "Enable debugging")
("f,file", "File name", cxxopts::value<std::string>());
auto result = options.parse(argc, argv); auto result = options.parse(argc, argv);

View File

@@ -15,16 +15,16 @@ CPMAddPackage(
CPMAddPackage( CPMAddPackage(
NAME doctest NAME doctest
GITHUB_REPOSITORY onqtam/doctest GITHUB_REPOSITORY onqtam/doctest
GIT_TAG 2.3.2 GIT_TAG 2.4.5
) )
# ---- Create binary ---- # ---- Create binary ----
add_executable(CPMExampleDoctest main.cpp) add_executable(CPMExampleDoctest main.cpp)
target_link_libraries(CPMExampleDoctest fibonacci doctest) target_link_libraries(CPMExampleDoctest fibonacci doctest)
set_target_properties(CPMExampleDoctest PROPERTIES CXX_STANDARD 17) target_compile_features(CPMExampleDoctest PRIVATE cxx_std_17)
# ---- Enable testing ---- # ---- Enable testing ----
ENABLE_TESTING() enable_testing()
ADD_TEST(CPMExampleDoctest CPMExampleDoctest) add_test(CPMExampleDoctest CPMExampleDoctest)

View File

@@ -16,11 +16,11 @@ CPMAddPackage(
if(EnTT_ADDED) if(EnTT_ADDED)
add_library(EnTT INTERFACE) add_library(EnTT INTERFACE)
target_include_directories(EnTT INTERFACE ${EnTT_SOURCE_DIR}/src) target_include_directories(EnTT SYSTEM INTERFACE ${EnTT_SOURCE_DIR}/src)
endif() endif()
# ---- Executable ---- # ---- Executable ----
add_executable(CPMEnTTExample "main.cpp") add_executable(CPMEnTTExample main.cpp)
set_target_properties(CPMEnTTExample PROPERTIES CXX_STANDARD 17) target_compile_features(CPMEnTTExample PRIVATE cxx_std_17)
target_link_libraries(CPMEnTTExample EnTT) target_link_libraries(CPMEnTTExample EnTT)

View File

@@ -1,5 +1,5 @@
#include <entt/entt.hpp>
#include <cstdint> #include <cstdint>
#include <entt/entt.hpp>
struct position { struct position {
float x; float x;
@@ -44,7 +44,9 @@ int main() {
for (auto i = 0; i < 10; ++i) { for (auto i = 0; i < 10; ++i) {
auto entity = registry.create(); auto entity = registry.create();
registry.assign<position>(entity, i * 1.f, i * 1.f); registry.assign<position>(entity, i * 1.f, i * 1.f);
if(i % 2 == 0) { registry.assign<velocity>(entity, i * .1f, i * .1f); } if (i % 2 == 0) {
registry.assign<velocity>(entity, i * .1f, i * .1f);
}
} }
update(dt, registry); update(dt, registry);

View File

@@ -8,12 +8,12 @@ include(../../cmake/CPM.cmake)
CPMAddPackage( CPMAddPackage(
NAME fmt NAME fmt
GIT_TAG 6.1.2 GIT_TAG 7.1.3
GITHUB_REPOSITORY fmtlib/fmt GITHUB_REPOSITORY fmtlib/fmt
) )
# ---- Executable ---- # ---- Executable ----
add_executable(CPMFmtExample "main.cpp") add_executable(CPMFmtExample main.cpp)
set_target_properties(CPMFmtExample PROPERTIES CXX_STANDARD 17) target_compile_features(CPMFmtExample PRIVATE cxx_std_17)
target_link_libraries(CPMFmtExample fmt) target_link_libraries(CPMFmtExample fmt)

View File

@@ -15,18 +15,16 @@ CPMAddPackage(
CPMAddPackage( CPMAddPackage(
NAME googletest NAME googletest
GITHUB_REPOSITORY google/googletest GITHUB_REPOSITORY google/googletest
GIT_TAG release-1.8.1 GIT_TAG release-1.10.0
VERSION 1.8.1 VERSION 1.10.0
OPTIONS OPTIONS "INSTALL_GTEST OFF" "gtest_force_shared_crt"
"INSTALL_GTEST OFF"
"gtest_force_shared_crt"
) )
# ---- Create binary ---- # ---- Create binary ----
add_executable(CPMExampleGtest main.cpp) add_executable(CPMExampleGtest main.cpp)
target_link_libraries(CPMExampleGtest fibonacci gtest gtest_main gmock) target_link_libraries(CPMExampleGtest fibonacci gtest gtest_main gmock)
set_target_properties(CPMExampleGtest PROPERTIES CXX_STANDARD 17) target_compile_features(CPMExampleGtest PRIVATE cxx_std_17)
# ---- Enable testing ---- # ---- Enable testing ----

View File

@@ -1,8 +1,7 @@
#include <gtest/gtest.h>
#include <fibonacci.h> #include <fibonacci.h>
#include <gtest/gtest.h>
TEST(FibonacciTests, BasicChecks) TEST(FibonacciTests, BasicChecks) {
{
ASSERT_TRUE(fibonacci(0) == 0); ASSERT_TRUE(fibonacci(0) == 0);
ASSERT_TRUE(fibonacci(1) == 1); ASSERT_TRUE(fibonacci(1) == 1);
ASSERT_TRUE(fibonacci(2) == 1); ASSERT_TRUE(fibonacci(2) == 1);

View File

@@ -8,19 +8,19 @@ include(../../cmake/CPM.cmake)
CPMAddPackage( CPMAddPackage(
NAME nlohmann_json NAME nlohmann_json
VERSION 3.6.1 VERSION 3.9.1
# not using the repo as it takes forever to clone # not using the repo as it takes forever to clone
URL https://github.com/nlohmann/json/releases/download/v3.6.1/include.zip URL https://github.com/nlohmann/json/releases/download/v3.9.1/include.zip
URL_HASH SHA256=69cc88207ce91347ea530b227ff0776db82dcb8de6704e1a3d74f4841bc651cf URL_HASH SHA256=6bea5877b1541d353bd77bdfbdb2696333ae5ed8f9e8cc22df657192218cad91
) )
if(nlohmann_json_ADDED) if(nlohmann_json_ADDED)
add_library(nlohmann_json INTERFACE) add_library(nlohmann_json INTERFACE)
target_include_directories(nlohmann_json INTERFACE ${nlohmann_json_SOURCE_DIR}) target_include_directories(nlohmann_json SYSTEM INTERFACE ${nlohmann_json_SOURCE_DIR}/include)
endif() endif()
# ---- Executable ---- # ---- Executable ----
add_executable(CPMJSONExample "main.cpp") add_executable(CPMJSONExample main.cpp)
set_target_properties(CPMJSONExample PROPERTIES CXX_STANDARD 17) target_compile_features(CPMJSONExample PRIVATE cxx_std_17)
target_link_libraries(CPMJSONExample nlohmann_json) target_link_libraries(CPMJSONExample nlohmann_json)

View File

@@ -1,23 +1,15 @@
#include <nlohmann/json.hpp>
#include <iostream>
#include <iomanip> #include <iomanip>
#include <iostream>
#include <nlohmann/json.hpp>
int main() { int main() {
nlohmann::json json = {{"pi", 3.141},
nlohmann::json json = {
{"pi", 3.141},
{"happy", true}, {"happy", true},
{"name", "Niels"}, {"name", "Niels"},
{"nothing", nullptr}, {"nothing", nullptr},
{"answer", { {"answer", {{"everything", 42}}},
{"everything", 42}
}},
{"list", {1, 0, 2}}, {"list", {1, 0, 2}},
{"object", { {"object", {{"currency", "USD"}, {"value", 42.99}}}};
{"currency", "USD"},
{"value", 42.99}
}}
};
std::cout << "declared JSON object: " << std::setw(2) << json << std::endl; std::cout << "declared JSON object: " << std::setw(2) << json << std::endl;

View File

@@ -14,11 +14,11 @@ CPMAddPackage(
if(linenoise_ADDED) if(linenoise_ADDED)
add_library(linenoise ${linenoise_SOURCE_DIR}/linenoise.c) add_library(linenoise ${linenoise_SOURCE_DIR}/linenoise.c)
target_include_directories(linenoise PUBLIC ${linenoise_SOURCE_DIR}) target_include_directories(linenoise SYSTEM PUBLIC ${linenoise_SOURCE_DIR})
endif() endif()
# ---- Executable ---- # ---- Executable ----
add_executable(CPMlinenoiseExample "main.cpp") add_executable(CPMlinenoiseExample main.cpp)
set_target_properties(CPMlinenoiseExample PROPERTIES CXX_STANDARD 17) target_compile_features(CPMlinenoiseExample PRIVATE cxx_std_17)
target_link_libraries(CPMlinenoiseExample linenoise) target_link_libraries(CPMlinenoiseExample linenoise)

View File

@@ -1,8 +1,8 @@
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include "linenoise.h"
#include "linenoise.h"
void completion(const char *buf, linenoiseCompletions *lc) { void completion(const char *buf, linenoiseCompletions *lc) {
if (buf[0] == 'h') { if (buf[0] == 'h') {

View File

@@ -8,19 +8,19 @@ include(../../cmake/CPM.cmake)
CPMAddPackage( CPMAddPackage(
NAME range-v3 NAME range-v3
URL https://github.com/ericniebler/range-v3/archive/0.5.0.zip URL https://github.com/ericniebler/range-v3/archive/0.11.0.zip
VERSION 0.5.0 VERSION 0.11.0
# the range-v3 CMakeLists screws with configuration options # the range-v3 CMakeLists screws with configuration options
DOWNLOAD_ONLY True DOWNLOAD_ONLY True
) )
if(range-v3_ADDED) if(range-v3_ADDED)
add_library(range-v3 INTERFACE IMPORTED) add_library(range-v3 INTERFACE IMPORTED)
target_include_directories(range-v3 INTERFACE "${range-v3_SOURCE_DIR}/include") target_include_directories(range-v3 SYSTEM INTERFACE "${range-v3_SOURCE_DIR}/include")
endif() endif()
# ---- Executable ---- # ---- Executable ----
add_executable(CPMRangev3Example "main.cpp") add_executable(CPMRangev3Example main.cpp)
set_target_properties(CPMRangev3Example PROPERTIES CXX_STANDARD 17) target_compile_features(CPMRangev3Example PRIVATE cxx_std_17)
target_link_libraries(CPMRangev3Example range-v3) target_link_libraries(CPMRangev3Example range-v3)

View File

@@ -18,21 +18,18 @@
// vector all_of is_six: false // vector all_of is_six: false
// vector none_of is_six: false // vector none_of is_six: false
#include <iostream>
#include <range/v3/algorithm/all_of.hpp> #include <range/v3/algorithm/all_of.hpp>
#include <range/v3/algorithm/any_of.hpp> #include <range/v3/algorithm/any_of.hpp>
#include <range/v3/algorithm/for_each.hpp> #include <range/v3/algorithm/for_each.hpp>
#include <range/v3/algorithm/none_of.hpp> #include <range/v3/algorithm/none_of.hpp>
#include <range/v3/view/all.hpp> #include <range/v3/view/all.hpp>
#include <iostream>
#include <vector> #include <vector>
using std::cout; using std::cout;
auto is_six = [](int i) { return i == 6; }; auto is_six = [](int i) { return i == 6; };
int int main() {
main()
{
std::vector<int> v{6, 2, 3, 4, 5, 6}; std::vector<int> v{6, 2, 3, 4, 5, 6};
cout << std::boolalpha; cout << std::boolalpha;
cout << "vector: " << ranges::view::all(v) << '\n'; cout << "vector: " << ranges::view::all(v) << '\n';

View File

@@ -15,12 +15,11 @@ CPMAddPackage(
if(simple_match_ADDED) if(simple_match_ADDED)
add_library(simple_match INTERFACE IMPORTED) add_library(simple_match INTERFACE IMPORTED)
target_include_directories(simple_match INTERFACE "${simple_match_SOURCE_DIR}/include") target_include_directories(simple_match SYSTEM INTERFACE "${simple_match_SOURCE_DIR}/include")
endif() endif()
# ---- Executable ---- # ---- Executable ----
add_executable(CPMSimpleMatchExample "main.cpp") add_executable(CPMSimpleMatchExample main.cpp)
set_target_properties(CPMSimpleMatchExample PROPERTIES CXX_STANDARD 17) target_compile_features(CPMSimpleMatchExample PRIVATE cxx_std_17)
target_link_libraries(CPMSimpleMatchExample simple_match) target_link_libraries(CPMSimpleMatchExample simple_match)

View File

@@ -1,6 +1,5 @@
#include <simple_match/simple_match.hpp>
#include <iostream> #include <iostream>
#include <simple_match/simple_match.hpp>
int main(int argc, char** argv) { int main(int argc, char** argv) {
using namespace simple_match; using namespace simple_match;
@@ -12,7 +11,9 @@ int main(int argc, char ** argv){
while (true) { while (true) {
std::cout << "> "; std::cout << "> ";
std::getline(std::cin, input); std::getline(std::cin, input);
if (input == "quit") { break; } if (input == "quit") {
break;
}
int x; int x;
try { try {
x = std::stoi(input); x = std::stoi(input);
@@ -21,13 +22,12 @@ int main(int argc, char ** argv){
continue; continue;
} }
match(x, match(
1, []() {std::cout << "The answer is one\n"; }, x, 1, []() { std::cout << "The answer is one\n"; }, 2,
2, []() {std::cout << "The answer is two\n"; }, []() { std::cout << "The answer is two\n"; }, _x < 10,
_x < 10, [](auto&& a) {std::cout << "The answer " << a << " is less than 10\n"; }, [](auto&& a) { std::cout << "The answer " << a << " is less than 10\n"; }, 10 < _x < 20,
10 < _x < 20, [](auto&& a) {std::cout << "The answer " << a << " is between 10 and 20 exclusive\n"; }, [](auto&& a) { std::cout << "The answer " << a << " is between 10 and 20 exclusive\n"; }, _,
_, []() {std::cout << "Did not match\n"; } []() { std::cout << "Did not match\n"; });
);
} }
return 0; return 0;

View File

@@ -16,17 +16,13 @@ CPMAddPackage(
if(lua_ADDED) if(lua_ADDED)
# lua has no CMakeLists, so we create our own target # lua has no CMakeLists, so we create our own target
FILE(GLOB lua_sources ${lua_SOURCE_DIR}/*.c) file(GLOB lua_sources ${lua_SOURCE_DIR}/*.c)
list(REMOVE_ITEM lua_sources "${lua_SOURCE_DIR}/lua.c" "${lua_SOURCE_DIR}/luac.c") list(REMOVE_ITEM lua_sources "${lua_SOURCE_DIR}/lua.c" "${lua_SOURCE_DIR}/luac.c")
add_library(lua STATIC ${lua_sources}) add_library(lua STATIC ${lua_sources})
target_include_directories(lua target_include_directories(lua SYSTEM PUBLIC $<BUILD_INTERFACE:${lua_SOURCE_DIR}>)
PUBLIC
$<BUILD_INTERFACE:${lua_SOURCE_DIR}>
)
endif() endif()
CPMAddPackage( CPMAddPackage(
NAME sol2 NAME sol2
URL https://github.com/ThePhD/sol2/archive/v3.0.2.zip URL https://github.com/ThePhD/sol2/archive/v3.0.2.zip
@@ -36,13 +32,12 @@ CPMAddPackage(
if(sol2_ADDED) if(sol2_ADDED)
add_library(sol2 INTERFACE IMPORTED) add_library(sol2 INTERFACE IMPORTED)
target_include_directories(sol2 INTERFACE ${sol2_SOURCE_DIR}/include) target_include_directories(sol2 SYSTEM INTERFACE ${sol2_SOURCE_DIR}/include)
target_link_libraries(sol2 INTERFACE lua) target_link_libraries(sol2 INTERFACE lua)
endif() endif()
# ---- Executable ---- # ---- Executable ----
add_executable(CPMSol2Example "main.cpp") add_executable(CPMSol2Example main.cpp)
set_target_properties(CPMSol2Example PROPERTIES CXX_STANDARD 17) target_compile_features(CPMSol2Example PRIVATE cxx_std_17)
target_link_libraries(CPMSol2Example sol2) target_link_libraries(CPMSol2Example sol2)

View File

@@ -1,5 +1,5 @@
#include <sol/sol.hpp>
#include <cassert> #include <cassert>
#include <sol/sol.hpp>
struct vars { struct vars {
int boop = 0; int boop = 0;
@@ -9,7 +9,8 @@ int main() {
sol::state lua; sol::state lua;
lua.open_libraries(sol::lib::base); lua.open_libraries(sol::lib::base);
lua.new_usertype<vars>("vars", "boop", &vars::boop); lua.new_usertype<vars>("vars", "boop", &vars::boop);
lua.script("beep = vars.new()\n" lua.script(
"beep = vars.new()\n"
"beep.boop = 1\n" "beep.boop = 1\n"
"print('beep boop')"); "print('beep boop')");
assert(lua.get<vars>("beep").boop == 1); assert(lua.get<vars>("beep").boop == 1);

View File

@@ -9,11 +9,11 @@ include(../../cmake/CPM.cmake)
CPMAddPackage( CPMAddPackage(
NAME spdlog NAME spdlog
GITHUB_REPOSITORY gabime/spdlog GITHUB_REPOSITORY gabime/spdlog
VERSION 1.7.0 VERSION 1.8.2
) )
# ---- Executable ---- # ---- Executable ----
add_executable(CPMSpdlogExample "main.cpp") add_executable(CPMSpdlogExample main.cpp)
set_target_properties(CPMSpdlogExample PROPERTIES CXX_STANDARD 17) target_compile_features(CPMSpdlogExample PRIVATE cxx_std_17)
target_link_libraries(CPMSpdlogExample spdlog) target_link_libraries(CPMSpdlogExample spdlog)

View File

@@ -9,19 +9,13 @@ include(../../cmake/CPM.cmake)
CPMAddPackage( CPMAddPackage(
NAME yaml-cpp NAME yaml-cpp
GIT_REPOSITORY https://github.com/jbeder/yaml-cpp.git GIT_REPOSITORY https://github.com/jbeder/yaml-cpp.git
# 0.6.2 uses deprecated CMake syntax
VERSION 0.6.3 VERSION 0.6.3
# 0.6.3 is not released yet, so use the most recent commit GIT_TAG yaml-cpp-0.6.3
GIT_TAG 012269756149ae99745b6dafefd415843d7420bb OPTIONS "YAML_CPP_BUILD_TESTS Off" "YAML_CPP_BUILD_CONTRIB Off" "YAML_CPP_BUILD_TOOLS Off"
OPTIONS
"YAML_CPP_BUILD_TESTS Off"
"YAML_CPP_BUILD_CONTRIB Off"
"YAML_CPP_BUILD_TOOLS Off"
) )
# ---- Executable ---- # ---- Executable ----
add_executable(CPMYamlExample "main.cpp") add_executable(CPMYamlExample main.cpp)
set_target_properties(CPMYamlExample PROPERTIES CXX_STANDARD 17) target_compile_features(CPMYamlExample PRIVATE cxx_std_17)
target_link_libraries(CPMYamlExample yaml-cpp) target_link_libraries(CPMYamlExample yaml-cpp)

View File

@@ -1,4 +1,5 @@
#include <yaml-cpp/yaml.h> #include <yaml-cpp/yaml.h>
#include <iostream> #include <iostream>
int main(int argc, char** argv) { int main(int argc, char** argv) {

View File

@@ -8,9 +8,8 @@ enable_testing()
foreach(test ${tests}) foreach(test ${tests})
message(STATUS "adding test: ${test}") message(STATUS "adding test: ${test}")
add_test( add_test(NAME ${test} COMMAND ${CMAKE_COMMAND} -DCPM_PATH=${CMAKE_CURRENT_SOURCE_DIR}/../cmake -P
NAME ${test} "${test}"
COMMAND ${CMAKE_COMMAND} -DCPM_PATH=${CMAKE_CURRENT_SOURCE_DIR}/../cmake -P "${test}"
) )
endforeach() endforeach()

12
test/style/CMakeLists.txt Normal file
View File

@@ -0,0 +1,12 @@
cmake_minimum_required(VERSION 3.14 FATAL_ERROR)
project(CPMStyleCheck)
include(${CMAKE_CURRENT_LIST_DIR}/../../cmake/CPM.cmake)
CPMAddPackage(
NAME Format.cmake
VERSION 1.6
GITHUB_REPOSITORY TheLartians/Format.cmake
OPTIONS "FORMAT_CHECK_CMAKE ON"
)

View File

@@ -8,8 +8,8 @@ set(TEST_BUILD_DIR ${CMAKE_CURRENT_BINARY_DIR}/remote_dependency)
function(clear_cache) function(clear_cache)
message(STATUS "clearing CPM cache") message(STATUS "clearing CPM cache")
FILE(REMOVE_RECURSE ${CPM_SOURCE_CACHE_DIR}) file(REMOVE_RECURSE ${CPM_SOURCE_CACHE_DIR})
ASSERT_NOT_EXISTS("${CPM_SOURCE_CACHE_DIR}") assert_not_exists("${CPM_SOURCE_CACHE_DIR}")
endfunction() endfunction()
function(update_cmake_lists) function(update_cmake_lists)
@@ -22,100 +22,92 @@ endfunction()
function(reset_test) function(reset_test)
clear_cache() clear_cache()
FILE(REMOVE_RECURSE ${TEST_BUILD_DIR}) file(REMOVE_RECURSE ${TEST_BUILD_DIR})
update_cmake_lists() update_cmake_lists()
endfunction() endfunction()
set(FIBONACCI_VERSION 1.0) set(FIBONACCI_VERSION 1.0)
## Read CPM_SOURCE_CACHE from arguments # Read CPM_SOURCE_CACHE from arguments
reset_test() reset_test()
execute_process( execute_process(
COMMAND COMMAND ${CMAKE_COMMAND} "-H${CMAKE_CURRENT_LIST_DIR}/remote_dependency" "-B${TEST_BUILD_DIR}"
${CMAKE_COMMAND} "-H${CMAKE_CURRENT_LIST_DIR}/remote_dependency" "-B${TEST_BUILD_DIR}" "-DCPM_SOURCE_CACHE=${CPM_SOURCE_CACHE_DIR}" "-DCPM_SOURCE_CACHE=${CPM_SOURCE_CACHE_DIR}" RESULT_VARIABLE ret
RESULT_VARIABLE ret
) )
ASSERT_EQUAL(${ret} "0") assert_equal(${ret} "0")
ASSERT_EXISTS("${CPM_SOURCE_CACHE_DIR}/fibonacci") assert_exists("${CPM_SOURCE_CACHE_DIR}/fibonacci")
FILE(GLOB FIBONACCI_VERSIONs "${CPM_SOURCE_CACHE_DIR}/fibonacci/*") file(GLOB FIBONACCI_VERSIONs "${CPM_SOURCE_CACHE_DIR}/fibonacci/*")
list(LENGTH FIBONACCI_VERSIONs FIBONACCI_VERSION_count) list(LENGTH FIBONACCI_VERSIONs FIBONACCI_VERSION_count)
ASSERT_EQUAL(${FIBONACCI_VERSION_count} "1") assert_equal(${FIBONACCI_VERSION_count} "1")
FILE(GLOB fibonacci_versions "${CPM_SOURCE_CACHE_DIR}/fibonacci/*") file(GLOB fibonacci_versions "${CPM_SOURCE_CACHE_DIR}/fibonacci/*")
list(LENGTH fibonacci_versions fibonacci_version_count) list(LENGTH fibonacci_versions fibonacci_version_count)
ASSERT_EQUAL(${fibonacci_version_count} "1") assert_equal(${fibonacci_version_count} "1")
## Update dependency and keep CPM_SOURCE_CACHE # Update dependency and keep CPM_SOURCE_CACHE
set(FIBONACCI_VERSION 2.0) set(FIBONACCI_VERSION 2.0)
update_cmake_lists() update_cmake_lists()
execute_process( execute_process(COMMAND ${CMAKE_COMMAND} ${TEST_BUILD_DIR} RESULT_VARIABLE ret)
COMMAND
${CMAKE_COMMAND} ${TEST_BUILD_DIR}
RESULT_VARIABLE ret
)
ASSERT_EQUAL(${ret} "0") assert_equal(${ret} "0")
FILE(GLOB FIBONACCI_VERSIONs "${CPM_SOURCE_CACHE_DIR}/fibonacci/*") file(GLOB FIBONACCI_VERSIONs "${CPM_SOURCE_CACHE_DIR}/fibonacci/*")
list(LENGTH FIBONACCI_VERSIONs FIBONACCI_VERSION_count) list(LENGTH FIBONACCI_VERSIONs FIBONACCI_VERSION_count)
ASSERT_EQUAL(${FIBONACCI_VERSION_count} "2") assert_equal(${FIBONACCI_VERSION_count} "2")
## Clear cache and update # Clear cache and update
clear_cache() clear_cache()
execute_process(COMMAND ${CMAKE_COMMAND} ${TEST_BUILD_DIR} RESULT_VARIABLE ret)
assert_equal(${ret} "0")
assert_exists("${CPM_SOURCE_CACHE_DIR}/fibonacci")
# Read CPM_SOURCE_CACHE from environment
reset_test()
execute_process( execute_process(
COMMAND COMMAND ${CMAKE_COMMAND} -E env "CPM_SOURCE_CACHE=${CPM_SOURCE_CACHE_DIR}" ${CMAKE_COMMAND}
${CMAKE_COMMAND} ${TEST_BUILD_DIR} "-H${CMAKE_CURRENT_LIST_DIR}/remote_dependency" "-B${TEST_BUILD_DIR}" RESULT_VARIABLE ret
)
assert_equal(${ret} "0")
assert_exists("${CPM_SOURCE_CACHE_DIR}/fibonacci")
# Reuse cached packages for other build
execute_process(
COMMAND ${CMAKE_COMMAND} -E env "CPM_SOURCE_CACHE=${CPM_SOURCE_CACHE_DIR}" ${CMAKE_COMMAND}
"-H${CMAKE_CURRENT_LIST_DIR}/remote_dependency" "-B${TEST_BUILD_DIR}-2"
RESULT_VARIABLE ret RESULT_VARIABLE ret
) )
ASSERT_EQUAL(${ret} "0") assert_equal(${ret} "0")
ASSERT_EXISTS("${CPM_SOURCE_CACHE_DIR}/fibonacci")
## Read CPM_SOURCE_CACHE from environment # Overwrite CPM_SOURCE_CACHE with argument
reset_test() reset_test()
execute_process( execute_process(
COMMAND COMMAND
${CMAKE_COMMAND} -E env "CPM_SOURCE_CACHE=${CPM_SOURCE_CACHE_DIR}" ${CMAKE_COMMAND} "-H${CMAKE_CURRENT_LIST_DIR}/remote_dependency" "-B${TEST_BUILD_DIR}" ${CMAKE_COMMAND} -E env "CPM_SOURCE_CACHE=${CMAKE_CURRENT_BINARY_DIR}/junk" ${CMAKE_COMMAND}
"-H${CMAKE_CURRENT_LIST_DIR}/remote_dependency" "-B${TEST_BUILD_DIR}"
"-DCPM_SOURCE_CACHE=${CPM_SOURCE_CACHE_DIR}"
RESULT_VARIABLE ret RESULT_VARIABLE ret
) )
ASSERT_EQUAL(${ret} "0") assert_equal(${ret} "0")
ASSERT_EXISTS("${CPM_SOURCE_CACHE_DIR}/fibonacci") assert_exists("${CPM_SOURCE_CACHE_DIR}/fibonacci")
## Reuse cached packages for other build # Use NO_CACHE option
execute_process(
COMMAND
${CMAKE_COMMAND} -E env "CPM_SOURCE_CACHE=${CPM_SOURCE_CACHE_DIR}" ${CMAKE_COMMAND} "-H${CMAKE_CURRENT_LIST_DIR}/remote_dependency" "-B${TEST_BUILD_DIR}-2"
RESULT_VARIABLE ret
)
ASSERT_EQUAL(${ret} "0")
## Overwrite CPM_SOURCE_CACHE with argument
reset_test()
execute_process(
COMMAND
${CMAKE_COMMAND} -E env "CPM_SOURCE_CACHE=${CMAKE_CURRENT_BINARY_DIR}/junk" ${CMAKE_COMMAND} "-H${CMAKE_CURRENT_LIST_DIR}/remote_dependency" "-B${TEST_BUILD_DIR}" "-DCPM_SOURCE_CACHE=${CPM_SOURCE_CACHE_DIR}"
RESULT_VARIABLE ret
)
ASSERT_EQUAL(${ret} "0")
ASSERT_EXISTS("${CPM_SOURCE_CACHE_DIR}/fibonacci")
## Use NO_CACHE option
set(FIBONACCI_PACKAGE_ARGS "NO_CACHE YES") set(FIBONACCI_PACKAGE_ARGS "NO_CACHE YES")
set(FIBONACCI_VERSION 1.0) set(FIBONACCI_VERSION 1.0)
@@ -123,25 +115,23 @@ update_cmake_lists()
reset_test() reset_test()
execute_process( execute_process(
COMMAND COMMAND ${CMAKE_COMMAND} -E env "CPM_SOURCE_CACHE=${CPM_SOURCE_CACHE_DIR}" ${CMAKE_COMMAND}
${CMAKE_COMMAND} -E env "CPM_SOURCE_CACHE=${CPM_SOURCE_CACHE_DIR}" ${CMAKE_COMMAND} "-H${CMAKE_CURRENT_LIST_DIR}/remote_dependency" "-B${TEST_BUILD_DIR}" "-H${CMAKE_CURRENT_LIST_DIR}/remote_dependency" "-B${TEST_BUILD_DIR}" RESULT_VARIABLE ret
RESULT_VARIABLE ret
) )
ASSERT_EQUAL(${ret} "0") assert_equal(${ret} "0")
ASSERT_NOT_EXISTS("${CPM_SOURCE_CACHE_DIR}/fibonacci") assert_not_exists("${CPM_SOURCE_CACHE_DIR}/fibonacci")
## Use commit hash after version # Use commit hash after version
set(FIBONACCI_PACKAGE_ARGS "NO_CACHE YES GIT_TAG e9ebf168ca0fffaa4ef8c6fefc6346aaa22f6ed5") set(FIBONACCI_PACKAGE_ARGS "NO_CACHE YES GIT_TAG e9ebf168ca0fffaa4ef8c6fefc6346aaa22f6ed5")
set(FIBONACCI_VERSION 1.1) set(FIBONACCI_VERSION 1.1)
update_cmake_lists() update_cmake_lists()
execute_process( execute_process(
COMMAND COMMAND ${CMAKE_COMMAND} -E env "CPM_SOURCE_CACHE=${CPM_SOURCE_CACHE_DIR}" ${CMAKE_COMMAND}
${CMAKE_COMMAND} -E env "CPM_SOURCE_CACHE=${CPM_SOURCE_CACHE_DIR}" ${CMAKE_COMMAND} "-H${CMAKE_CURRENT_LIST_DIR}/remote_dependency" "-B${TEST_BUILD_DIR}" "-H${CMAKE_CURRENT_LIST_DIR}/remote_dependency" "-B${TEST_BUILD_DIR}" RESULT_VARIABLE ret
RESULT_VARIABLE ret
) )
ASSERT_EQUAL(${ret} "0") assert_equal(${ret} "0")
ASSERT_NOT_EXISTS("${CPM_SOURCE_CACHE_DIR}/fibonacci") assert_not_exists("${CPM_SOURCE_CACHE_DIR}/fibonacci")

View File

@@ -5,31 +5,19 @@ include(${CPM_PATH}/testing.cmake)
set(CPM_DRY_RUN ON) set(CPM_DRY_RUN ON)
CPMAddPackage( CPMAddPackage(NAME A GIT_TAG 1.2.3)
NAME A
GIT_TAG 1.2.3
)
CPMAddPackage( CPMAddPackage(NAME A VERSION 1.2.3)
NAME A
VERSION 1.2.3
)
CPMGetPackageVersion(A VERSION) CPMGetPackageVersion(A VERSION)
ASSERT_EQUAL(${VERSION} "1.2.3") assert_equal(${VERSION} "1.2.3")
CPMAddPackage( CPMAddPackage(NAME B VERSION 2.4.1)
NAME B
VERSION 2.4.1
)
CPMAddPackage( CPMAddPackage(NAME B GIT_TAG v2.3.1)
NAME B
GIT_TAG v2.3.1
)
CPMGetPackageVersion(B VERSION) CPMGetPackageVersion(B VERSION)
ASSERT_EQUAL(${VERSION} "2.4.1") assert_equal(${VERSION} "2.4.1")
CPMAddPackage( CPMAddPackage(
NAME C NAME C
@@ -38,4 +26,4 @@ CPMAddPackage(
) )
CPMGetPackageVersion(C VERSION) CPMGetPackageVersion(C VERSION)
ASSERT_EQUAL(${VERSION} "3.1.2") assert_equal(${VERSION} "3.1.2")

View File

@@ -3,20 +3,20 @@ cmake_minimum_required(VERSION 3.14 FATAL_ERROR)
include(${CPM_PATH}/CPM.cmake) include(${CPM_PATH}/CPM.cmake)
include(${CPM_PATH}/testing.cmake) include(${CPM_PATH}/testing.cmake)
CPM_IS_GIT_TAG_COMMIT_HASH("v1.2.3" RESULT) cpm_is_git_tag_commit_hash("v1.2.3" RESULT)
ASSERT_EQUAL("0" ${RESULT}) assert_equal("0" ${RESULT})
CPM_IS_GIT_TAG_COMMIT_HASH("asio-1-12-1" RESULT) cpm_is_git_tag_commit_hash("asio-1-12-1" RESULT)
ASSERT_EQUAL("0" ${RESULT}) assert_equal("0" ${RESULT})
CPM_IS_GIT_TAG_COMMIT_HASH("513039e3cba83284cec71287fd829865b9f423bc" RESULT) cpm_is_git_tag_commit_hash("513039e3cba83284cec71287fd829865b9f423bc" RESULT)
ASSERT_EQUAL("1" ${RESULT}) assert_equal("1" ${RESULT})
CPM_IS_GIT_TAG_COMMIT_HASH("513039E3CBA83284CEC71287FD829865B9F423BC" RESULT) cpm_is_git_tag_commit_hash("513039E3CBA83284CEC71287FD829865B9F423BC" RESULT)
ASSERT_EQUAL("1" ${RESULT}) assert_equal("1" ${RESULT})
CPM_IS_GIT_TAG_COMMIT_HASH("513039E" RESULT) cpm_is_git_tag_commit_hash("513039E" RESULT)
ASSERT_EQUAL("1" ${RESULT}) assert_equal("1" ${RESULT})
CPM_IS_GIT_TAG_COMMIT_HASH("513039E3CBA8" RESULT) cpm_is_git_tag_commit_hash("513039E3CBA8" RESULT)
ASSERT_EQUAL("1" ${RESULT}) assert_equal("1" ${RESULT})

View File

@@ -24,3 +24,11 @@ endif()
# ---- Call dependency method to validate correct addition of directory ---- # ---- Call dependency method to validate correct addition of directory ----
dependency_function() dependency_function()
# ---- Check parameters ----
include(@CPM_PATH@/testing.cmake)
ASSERT_TRUTHY(@TEST_DEPENDENCY_NAME@_ADDED)
ASSERT_DEFINED(@TEST_DEPENDENCY_NAME@_SOURCE_DIR)
ASSERT_DEFINED(@TEST_DEPENDENCY_NAME@_BINARY_DIR)

View File

@@ -17,3 +17,11 @@ CPMAddPackage(
# ---- Call dependency method to validate correct addition of directory ---- # ---- Call dependency method to validate correct addition of directory ----
dependency_function() dependency_function()
# ---- Check parameters ----
include(@CPM_PATH@/testing.cmake)
ASSERT_TRUTHY(Dependency_ADDED)
ASSERT_DEFINED(Dependency_SOURCE_DIR)
ASSERT_DEFINED(Dependency_BINARY_DIR)

View File

@@ -1,4 +1,3 @@
function(dependency_function) function(dependency_function)
message("called external method") message("called external method")
endfunction() endfunction()

View File

@@ -1,10 +1,9 @@
include(CMakePackageConfigHelpers) include(CMakePackageConfigHelpers)
include(${CPM_PATH}/testing.cmake) include(${CPM_PATH}/testing.cmake)
set(TEST_BUILD_DIR ${CMAKE_CURRENT_BINARY_DIR}/modules) set(TEST_BUILD_DIR ${CMAKE_CURRENT_BINARY_DIR}/modules)
function(initProjectWithDependency TEST_DEPENDENCY_NAME) function(init_project_with_dependency TEST_DEPENDENCY_NAME)
configure_package_config_file( configure_package_config_file(
"${CMAKE_CURRENT_LIST_DIR}/local_dependency/ModuleCMakeLists.txt.in" "${CMAKE_CURRENT_LIST_DIR}/local_dependency/ModuleCMakeLists.txt.in"
"${CMAKE_CURRENT_LIST_DIR}/local_dependency/CMakeLists.txt" "${CMAKE_CURRENT_LIST_DIR}/local_dependency/CMakeLists.txt"
@@ -12,19 +11,18 @@ function(initProjectWithDependency TEST_DEPENDENCY_NAME)
) )
execute_process( execute_process(
COMMAND COMMAND ${CMAKE_COMMAND} "-H${CMAKE_CURRENT_LIST_DIR}/local_dependency" "-B${TEST_BUILD_DIR}"
${CMAKE_COMMAND} "-H${CMAKE_CURRENT_LIST_DIR}/local_dependency" "-B${TEST_BUILD_DIR}"
RESULT_VARIABLE ret RESULT_VARIABLE ret
) )
ASSERT_EQUAL(${ret} "0") assert_equal(${ret} "0")
endfunction() endfunction()
initProjectWithDependency(A) init_project_with_dependency(A)
ASSERT_EXISTS(${TEST_BUILD_DIR}/CPM_modules) assert_exists(${TEST_BUILD_DIR}/CPM_modules)
ASSERT_EXISTS(${TEST_BUILD_DIR}/CPM_modules/FindA.cmake) assert_exists(${TEST_BUILD_DIR}/CPM_modules/FindA.cmake)
ASSERT_NOT_EXISTS(${TEST_BUILD_DIR}/CPM_modules/FindB.cmake) assert_not_exists(${TEST_BUILD_DIR}/CPM_modules/FindB.cmake)
initProjectWithDependency(B) init_project_with_dependency(B)
ASSERT_NOT_EXISTS(${TEST_BUILD_DIR}/CPM_modules/FindA.cmake) assert_not_exists(${TEST_BUILD_DIR}/CPM_modules/FindA.cmake)
ASSERT_EXISTS(${TEST_BUILD_DIR}/CPM_modules/FindB.cmake) assert_exists(${TEST_BUILD_DIR}/CPM_modules/FindB.cmake)

View File

@@ -1,17 +1,18 @@
include(CMakePackageConfigHelpers) include(CMakePackageConfigHelpers)
include(${CPM_PATH}/testing.cmake) include(${CPM_PATH}/testing.cmake)
set(TEST_BUILD_DIR ${CMAKE_CURRENT_BINARY_DIR}/package-lock) set(TEST_BUILD_DIR ${CMAKE_CURRENT_BINARY_DIR}/package-lock)
function(configureWithDeclare DECLARE_DEPENDENCY) function(configure_with_declare DECLARE_DEPENDENCY)
execute_process(COMMAND ${CMAKE_COMMAND} -E rm -rf ${TEST_BUILD_DIR}) execute_process(COMMAND ${CMAKE_COMMAND} -E rm -rf ${TEST_BUILD_DIR})
if(DECLARE_DEPENDENCY) if(DECLARE_DEPENDENCY)
set(PREPARE_CODE "CPMDeclarePackage(Dependency set(PREPARE_CODE
"CPMDeclarePackage(Dependency
NAME Dependency NAME Dependency
SOURCE_DIR ${CMAKE_CURRENT_LIST_DIR}/local_dependency/dependency SOURCE_DIR ${CMAKE_CURRENT_LIST_DIR}/local_dependency/dependency
)") )"
)
else() else()
set(PREPARE_CODE "") set(PREPARE_CODE "")
endif() endif()
@@ -23,27 +24,30 @@ function(configureWithDeclare DECLARE_DEPENDENCY)
) )
execute_process( execute_process(
COMMAND ${CMAKE_COMMAND} -H${CMAKE_CURRENT_LIST_DIR}/local_dependency -B${TEST_BUILD_DIR} -DCPM_INCLUDE_ALL_IN_PACKAGE_LOCK=1 COMMAND ${CMAKE_COMMAND} -H${CMAKE_CURRENT_LIST_DIR}/local_dependency -B${TEST_BUILD_DIR}
RESULT_VARIABLE ret -DCPM_INCLUDE_ALL_IN_PACKAGE_LOCK=1 RESULT_VARIABLE ret
) )
ASSERT_EQUAL(${ret} "0") assert_equal(${ret} "0")
endfunction() endfunction()
function(updatePackageLock) function(update_package_lock)
execute_process( execute_process(
COMMAND ${CMAKE_COMMAND} --build ${TEST_BUILD_DIR} --target cpm-update-package-lock COMMAND ${CMAKE_COMMAND} --build ${TEST_BUILD_DIR} --target cpm-update-package-lock
RESULT_VARIABLE ret RESULT_VARIABLE ret
) )
ASSERT_EQUAL(${ret} "0") assert_equal(${ret} "0")
endfunction() endfunction()
execute_process(COMMAND ${CMAKE_COMMAND} -E rm -f ${CMAKE_CURRENT_LIST_DIR}/local_dependency/package-lock.cmake) execute_process(
configureWithDeclare(YES) COMMAND ${CMAKE_COMMAND} -E rm -f ${CMAKE_CURRENT_LIST_DIR}/local_dependency/package-lock.cmake
ASSERT_NOT_EXISTS(${CMAKE_CURRENT_LIST_DIR}/local_dependency/package-lock.cmake) )
updatePackageLock() configure_with_declare(YES)
ASSERT_EXISTS(${CMAKE_CURRENT_LIST_DIR}/local_dependency/package-lock.cmake) assert_not_exists(${CMAKE_CURRENT_LIST_DIR}/local_dependency/package-lock.cmake)
configureWithDeclare(NO) update_package_lock()
execute_process(COMMAND ${CMAKE_COMMAND} -E rm -f ${CMAKE_CURRENT_LIST_DIR}/local_dependency/package-lock.cmake) assert_exists(${CMAKE_CURRENT_LIST_DIR}/local_dependency/package-lock.cmake)
configure_with_declare(NO)
execute_process(
COMMAND ${CMAKE_COMMAND} -E rm -f ${CMAKE_CURRENT_LIST_DIR}/local_dependency/package-lock.cmake
)

View File

@@ -0,0 +1,42 @@
cmake_minimum_required(VERSION 3.14 FATAL_ERROR)
include(${CPM_PATH}/CPM.cmake)
include(${CPM_PATH}/testing.cmake)
# cmake-format: off
cpm_prettify_package_arguments(PRETTY_ARGN false
NAME Dependency
SOURCE_DIR ${CMAKE_SOURCE_DIR}/local_dependency/dependency
UPDATE_DISCONNECTED ON
TESTCUSTOMDATA TRUE
)
# cmake-format: on
set(EXPECTED_UNCOMMENTED
" NAME Dependency
SOURCE_DIR \${CMAKE_SOURCE_DIR}/local_dependency/dependency
UPDATE_DISCONNECTED ON TESTCUSTOMDATA TRUE
"
)
assert_equal(${PRETTY_ARGN} ${EXPECTED_UNCOMMENTED})
# cmake-format: off
cpm_prettify_package_arguments(PRETTY_ARGN true
NAME Dependency
SOURCE_DIR ${CMAKE_SOURCE_DIR}/local_dependency/dependency
UPDATE_DISCONNECTED ON
TESTCUSTOMDATA TRUE
)
# cmake-format: on
set(EXPECTED_COMMENTED
"# NAME Dependency
# SOURCE_DIR \${CMAKE_SOURCE_DIR}/local_dependency/dependency
# UPDATE_DISCONNECTED ON TESTCUSTOMDATA TRUE
"
)
assert_equal(${PRETTY_ARGN} ${EXPECTED_COMMENTED})
cpm_prettify_package_arguments(PRETTY_ARGN true "local directory")
set(EXPECTED_COMMENTED_LOCALDIR "# local directory
"
)
assert_equal(${PRETTY_ARGN} ${EXPECTED_COMMENTED_LOCALDIR})

View File

@@ -1,4 +1,3 @@
include(CMakePackageConfigHelpers) include(CMakePackageConfigHelpers)
include(${CPM_PATH}/testing.cmake) include(${CPM_PATH}/testing.cmake)
@@ -13,8 +12,9 @@ configure_package_config_file(
) )
execute_process( execute_process(
COMMAND ${CMAKE_COMMAND} -H${CMAKE_CURRENT_LIST_DIR}/local_dependency -B${TEST_BUILD_DIR} -DCPM_Dependency_SOURCE=${CMAKE_CURRENT_LIST_DIR}/local_dependency/dependency COMMAND ${CMAKE_COMMAND} -H${CMAKE_CURRENT_LIST_DIR}/local_dependency -B${TEST_BUILD_DIR}
-DCPM_Dependency_SOURCE=${CMAKE_CURRENT_LIST_DIR}/local_dependency/dependency
RESULT_VARIABLE ret RESULT_VARIABLE ret
) )
ASSERT_EQUAL(${ret} "0") assert_equal(${ret} "0")

View File

@@ -22,3 +22,11 @@ CPMAddPackage(
add_executable(CPMExampleCatch2 main.cpp) add_executable(CPMExampleCatch2 main.cpp)
target_link_libraries(CPMExampleCatch2 fibonacci) target_link_libraries(CPMExampleCatch2 fibonacci)
set_target_properties(CPMExampleCatch2 PROPERTIES CXX_STANDARD 17 COMPILE_FLAGS "-Wall -pedantic -Wextra -Werror") set_target_properties(CPMExampleCatch2 PROPERTIES CXX_STANDARD 17 COMPILE_FLAGS "-Wall -pedantic -Wextra -Werror")
# ---- Check parameters ----
include(@CPM_PATH@/testing.cmake)
ASSERT_TRUTHY(fibonacci_ADDED)
ASSERT_DEFINED(fibonacci_SOURCE_DIR)
ASSERT_DEFINED(fibonacci_BINARY_DIR)

View File

@@ -1,6 +1,7 @@
#define CATCH_CONFIG_MAIN #define CATCH_CONFIG_MAIN
#include <fibonacci.h> #include <fibonacci.h>
#include <iostream> #include <iostream>
int main() { int main() {

View File

@@ -1,4 +1,3 @@
include(CMakePackageConfigHelpers) include(CMakePackageConfigHelpers)
include(${CPM_PATH}/testing.cmake) include(${CPM_PATH}/testing.cmake)
@@ -13,9 +12,8 @@ configure_package_config_file(
) )
execute_process( execute_process(
COMMAND COMMAND ${CMAKE_COMMAND} "-H${CMAKE_CURRENT_LIST_DIR}/local_dependency" "-B${TEST_BUILD_DIR}"
${CMAKE_COMMAND} "-H${CMAKE_CURRENT_LIST_DIR}/local_dependency" "-B${TEST_BUILD_DIR}"
RESULT_VARIABLE ret RESULT_VARIABLE ret
) )
ASSERT_EQUAL(${ret} "0") assert_equal(${ret} "0")

View File

@@ -3,14 +3,14 @@ cmake_minimum_required(VERSION 3.14 FATAL_ERROR)
include(${CPM_PATH}/CPM.cmake) include(${CPM_PATH}/CPM.cmake)
include(${CPM_PATH}/testing.cmake) include(${CPM_PATH}/testing.cmake)
CPM_GET_VERSION_FROM_GIT_TAG("1.2.3" VERSION) cpm_get_version_from_git_tag("1.2.3" VERSION)
ASSERT_EQUAL("1.2.3" ${VERSION}) assert_equal("1.2.3" ${VERSION})
CPM_GET_VERSION_FROM_GIT_TAG("v1.2.3" VERSION) cpm_get_version_from_git_tag("v1.2.3" VERSION)
ASSERT_EQUAL("1.2.3" ${VERSION}) assert_equal("1.2.3" ${VERSION})
CPM_GET_VERSION_FROM_GIT_TAG("1.2.3-a" VERSION) cpm_get_version_from_git_tag("1.2.3-a" VERSION)
ASSERT_EQUAL("1.2.3" ${VERSION}) assert_equal("1.2.3" ${VERSION})
CPM_GET_VERSION_FROM_GIT_TAG("v1.2.3-a" VERSION) cpm_get_version_from_git_tag("v1.2.3-a" VERSION)
ASSERT_EQUAL("1.2.3" ${VERSION}) assert_equal("1.2.3" ${VERSION})