Skip to content

Commit

Permalink
fix HIPO_LIBS
Browse files Browse the repository at this point in the history
  • Loading branch information
dglazier committed Feb 7, 2024
1 parent 4ba8b21 commit f0db553
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ if (DEFINED ENV{HIPO})

set(HIPOEXT $ENV{HIPO})
set(HIPO_INCLUDE_DIR ${HIPOEXT}/include/)
set(HIPO_LIBS -L${HIPOEXT}/ -lhipo4)
set(HIPO_LIBS "-L${HIPOEXT}/lib -lhipo4")

MESSAGE( STATUS "HIPO INCLUDE_DIR : " ${HIPO_INCLUDE_DIR} )
MESSAGE( STATUS "HIPO LIBRARIES : " ${HIPO_LIBS} )
Expand All @@ -52,10 +52,14 @@ ENDIF (DEFINED ENV{QADB})



set(HIPOROOT_DIR ${CMAKE_CURRENT_SOURCE_DIR}/hipo4)
set(CLAS12ROOT_DIR ${CMAKE_CURRENT_SOURCE_DIR}/Clas12Root)
set(CLAS12BANKS_DIR ${CMAKE_CURRENT_SOURCE_DIR}/Clas12Banks)


include_directories(${HIPOROOT_DIR})
add_subdirectory (${HIPOROOT_DIR})

include_directories(${CLAS12BANKS_DIR})
add_subdirectory (${CLAS12BANKS_DIR})

Expand Down

0 comments on commit f0db553

Please sign in to comment.