cernlib: depends_on libxaw libxt (#34448)
Based on the following lines in the top level `CMakeLists.txt` (I can't deep link since gitlab.cern.ch not public), `cernlib` needs an explicit dependency on `libxaw` and `libxt`: ```cmake find_package(X11 REQUIRED) message(STATUS "CERNLIB: X11_Xt_LIB=${X11_Xt_LIB} X11_Xaw_LIB=${X11_Xaw_LIB} X11_LIBRARIES=${X11_LIBRARIES}") ```
This commit is contained in:
parent
9d936a2a75
commit
44f7363fbe
1 changed files with 2 additions and 0 deletions
|
@ -22,6 +22,8 @@ class Cernlib(CMakePackage):
|
|||
|
||||
depends_on("motif")
|
||||
depends_on("libx11")
|
||||
depends_on("libxaw")
|
||||
depends_on("libxt")
|
||||
|
||||
def cmake_args(self):
|
||||
args = ["-DCERNLIB_BUILD_SHARED:BOOL=ON"]
|
||||
|
|
Loading…
Reference in a new issue