Skip to content

Commit

Permalink
cmake: Add DESCRIPTION and HOMEPAGE_URL options to project command
Browse files Browse the repository at this point in the history
`DESCRIPTION` is available in CMake 3.9+.
`HOMEPAGE_URL` is available in CMake 3.12+.
  • Loading branch information
hebasto committed Apr 20, 2023
1 parent 8a8b653 commit 04d4cc0
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,15 @@ if(CMAKE_VERSION VERSION_GREATER 3.14)
cmake_policy(SET CMP0092 NEW)
endif()

# The package (a.k.a. release) version is based on semantic versioning 2.0.0 of
# the API. All changes in experimental modules are treated as
# backwards-compatible and therefore at most increase the minor version.
project(libsecp256k1 VERSION 0.3.2 LANGUAGES C)
project(libsecp256k1
# The package (a.k.a. release) version is based on semantic versioning 2.0.0 of
# the API. All changes in experimental modules are treated as
# backwards-compatible and therefore at most increase the minor version.
VERSION 0.3.2
DESCRIPTION "Optimized C library for ECDSA signatures and secret/public key operations on curve secp256k1."
HOMEPAGE_URL "https://github.com/bitcoin-core/secp256k1"
LANGUAGES C
)

# The library version is based on libtool versioning of the ABI. The set of
# rules for updating the version can be found here:
Expand Down

0 comments on commit 04d4cc0

Please sign in to comment.