-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #112 from saprykin/111-install-exported-cmake-targets
Install exported CMake targets
- Loading branch information
Showing
3 changed files
with
56 additions
and
13 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# The MIT License | ||
# | ||
# Copyright (C) 2018-2023 Alexander Saprykin <[email protected]> | ||
# Copyright (C) 2018-2024 Alexander Saprykin <[email protected]> | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining | ||
# a copy of this software and associated documentation files (the | ||
|
@@ -24,7 +24,7 @@ | |
|
||
set (CMAKE_LEGACY_CYGWIN_WIN32 0) | ||
|
||
cmake_minimum_required (VERSION 2.8.0...3.25.1) | ||
cmake_minimum_required (VERSION 2.8.0...3.31.0) | ||
project (plibsys C) | ||
|
||
# Introduced in CMake 3.3, may produce warnings with CMake < 3.12 | ||
|
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,7 @@ | ||
@PACKAGE_INIT@ | ||
|
||
if (NOT TARGET plibsys::plibsys) | ||
include("${CMAKE_CURRENT_LIST_DIR}/@[email protected]") | ||
endif() | ||
|
||
check_required_components(plibsys) |
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