@@ -73,30 +73,30 @@ if ( NOT NO_PYTHON )
7373 endif ()
7474
7575 # libboost_python3.7 style libraries
76- message ("Looking for libboost_python${Python3_VERSION_MAJOR}${Python3_VERSION_MINOR} " )
76+ message ("Looking for libboost_python${Python3_VERSION_MAJOR}${Python3_VERSION_MINOR} Mode 1 " )
7777 FIND_PACKAGE (Boost 1.58 QUIET COMPONENTS python${Python3_VERSION_MAJOR}${Python3_VERSION_MINOR} )
7878
7979 # libboost_python3 style libraries
8080 if (NOT Boost_FOUND)
81- message ("Looking for libboost_python${Python3_VERSION_MAJOR} " )
81+ message ("Looking for libboost_python${Python3_VERSION_MAJOR} Mode 2 " )
8282 FIND_PACKAGE (Boost 1.58 QUIET COMPONENTS python${Python3_VERSION_MAJOR} )
8383 endif ()
8484
8585 # libboost_python style libraries
8686 if (NOT Boost_FOUND)
87- message ("Looking for libboost_python" )
87+ message ("Looking for libboost_python Mode 3 " )
8888 FIND_PACKAGE (Boost 1.58 QUIET COMPONENTS system thread python)
8989 endif ()
9090
9191 # libboost_python-py37 style libraries
9292 if (NOT Boost_FOUND)
93- message ("Looking for libboost_python-py${Python3_VERSION_MAJOR}${Python3_VERSION_MINOR} " )
93+ message ("Looking for libboost_python-py${Python3_VERSION_MAJOR}${Python3_VERSION_MINOR} Mode 4 " )
9494 FIND_PACKAGE (Boost 1.58 QUIET COMPONENTS python-py${Python3_VERSION_MAJOR}${Python3_VERSION_MINOR} )
9595 endif ()
9696
9797 # libboost_python3-py37 style libraries
9898 if (NOT Boost_FOUND)
99- message ("Looking for libboost_python3-py${Python3_VERSION_MAJOR}${Python3_VERSION_MINOR} " )
99+ message ("Looking for libboost_python3-py${Python3_VERSION_MAJOR}${Python3_VERSION_MINOR} Mode 5 " )
100100 FIND_PACKAGE (Boost 1.58 QUIET COMPONENTS python3-py${Python3_VERSION_MAJOR}${Python3_VERSION_MINOR} )
101101 endif ()
102102
@@ -236,7 +236,6 @@ include_directories(system ${Python3_INCLUDE_DIRS})
236236include_directories (system ${Python3_NumPy_INCLUDE_DIRS} )
237237include_directories (system ${ZeroMQ_INCLUDE_DIR} )
238238include_directories (system ${BZIP2_INCLUDE_DIR} )
239- include_directories (system ${EPICS_INCLUDES} )
240239
241240if (APPLE )
242241 SET (CMAKE_SHARED_LIBRARY_SUFFIX ".dylib" )
@@ -259,7 +258,6 @@ set_target_properties(rogue-core-shared PROPERTIES VERSION ${ROGUE_VERSION} SOVE
259258
260259TARGET_LINK_LIBRARIES (rogue-core-shared PUBLIC ${Boost_LIBRARIES} )
261260TARGET_LINK_LIBRARIES (rogue-core-shared PUBLIC ${ZeroMQ_LIBRARY} )
262- TARGET_LINK_LIBRARIES (rogue-core-shared PUBLIC ${EPICS_LIBRARIES} )
263261TARGET_LINK_LIBRARIES (rogue-core-shared PUBLIC ${BZIP2_LIBRARIES} )
264262
265263# Do not link directly against python in mac os
@@ -278,7 +276,6 @@ if(STATIC_LIB)
278276 # Link rogue core to boost, python and bzip
279277 TARGET_LINK_LIBRARIES (rogue-core-static PUBLIC ${Boost_LIBRARIES} )
280278 TARGET_LINK_LIBRARIES (rogue-core-static PUBLIC ${ZeroMQ_LIBRARY} )
281- TARGET_LINK_LIBRARIES (rogue-core-static PUBLIC ${EPICS_LIBRARIES} )
282279 TARGET_LINK_LIBRARIES (rogue-core-static PUBLIC ${BZIP2_LIBRARIES} )
283280 TARGET_LINK_LIBRARIES (rogue-core-static PUBLIC ${Python3_LIBRARIES} )
284281 TARGET_LINK_LIBRARIES (rogue-core-static PUBLIC rt)
0 commit comments