-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature: add handling to install dll too (#19)
* add handling to install dll too modernize cmake files too * reduce the scope of hidden visibility * add new arguments to .cmake-format build dll anly if requested * fix github yml test config * fix the mixed build of dll and static libs tested und debian * update readme update used package versions too * fix wrong option checking do not use if(DEFINED ...), functions argumanet are always defined! * revert to orign for one_value_keywords add notes about the differents * use option DISABLE_VERSION_SUFFIX YES instead of NO_VERSION_SUFFIX flag * reformat and yamllint github workflows support git flow too (with branch develop) * add new options: DISABLE_CHECK_REQUIRED_COMPONENTS to calls configure_package_config_file(NO_CHECK_REQUIRED_COMPONENTS_MACRO ...) with this options set * call check_required_components() only if enabled * revert my changes check_required_components() is not longer used * Update .github/workflows/style.yml Co-authored-by: Lars Melchior <[email protected]> * changes according the review comments build always the shared lib * do not start CI build on develop branch requested while review * Update test/CMakeLists.txt Co-authored-by: Lars Melchior <[email protected]> * Update CMakeLists.txt fix typo Co-authored-by: Lars Melchior <[email protected]> Co-authored-by: Lars Melchior <[email protected]>
- Loading branch information
1 parent
0ef7d94
commit 18beef4
Showing
12 changed files
with
62 additions
and
39 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
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
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
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
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
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
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
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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
cmake_minimum_required(VERSION 3.14 FATAL_ERROR) | ||
cmake_minimum_required(VERSION 3.14) | ||
|
||
project(StyleCheck) | ||
|
||
|
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
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
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
#include <fmt/format.h> | ||
#include <transitive_dependency/export.h> | ||
#include <transitive_dependency/version.h> | ||
|
||
void transitiveDependencyFunction() { | ||
void TRANSITIVE_DEPENDENCY_EXPORT transitiveDependencyFunction() { | ||
fmt::print("Using transitive_dependency version {}\n", TRANSITIVE_DEPENDENCY_VERSION); | ||
} |