(irrelevant changes)

This commit is contained in:
Lephenixnoir 2021-01-28 17:38:10 +01:00
parent 6c8af05fbe
commit 7b4a181424
Signed by: Lephenixnoir
GPG Key ID: 1BBA026E13FC0495
2 changed files with 2 additions and 3 deletions

View File

@ -33,8 +33,8 @@ find_package_handle_standard_args(LibExample
if(LibExample_FOUND)
# This is an imported target, we don't build it, we just claim it's here
add_library(LibExample::LibExample UNKNOWN IMPORTED)
# Here's we declare the compiler and linker flags that every user of
# LibExample have to use to work with us
# Here we declare the compiler and linker flags that every user of LibExample
# needs to use.
set_target_properties(LibExample::LibExample PROPERTIES
# If we specify where the library comes from, CMake will watch that file
# and relink any user application when the library is updated!

View File

@ -11,7 +11,6 @@ extern "C" {
/* Version of the example library */
char const *ex_version(void);
uint32_t ex_hash(void);
/* Version of gint used in this library */
char const *ex_gint_version(void);