Commit 079866bf authored by Robert Schmidt's avatar Robert Schmidt

Check for libforms for building scopes

parent 306b4974
...@@ -29,6 +29,13 @@ ...@@ -29,6 +29,13 @@
#* \warning #* \warning
#*/ #*/
find_library(forms NAMES forms)
if(NOT forms)
message(FATAL_ERROR "required library forms not found for building scopes")
else()
message(STATUS "libforms library, required for scopes, found at ${forms}")
endif()
include_directories ("/usr/include/X11") include_directories ("/usr/include/X11")
add_library(xforms_common OBJECT add_library(xforms_common OBJECT
lte_phy_scope.c lte_phy_scope.c
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment