diff --git a/cmake/FindLibExample.cmake b/cmake/FindLibExample.cmake index dd4c4f3..565bf51 100644 --- a/cmake/FindLibExample.cmake +++ b/cmake/FindLibExample.cmake @@ -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! diff --git a/include/example/version.h b/include/example/version.h index c140ec3..03b1efd 100644 --- a/include/example/version.h +++ b/include/example/version.h @@ -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);