-
Tristan Walter authoredTristan Walter authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
CMakeLists.txt 1.55 KiB
file(GLOB HDRS *.h ${CMAKE_SOURCE_DIR}/*.py)
file(GLOB SRCS *.cpp)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
# add actual library
if(UNIX)
add_library(tracker_python STATIC ${SRCS} ${HDRS})
elseif(WIN32)
add_library(tracker_python SHARED ${SRCS} ${HDRS})
endif()
if(WIN32)
target_link_libraries(tracker_python PRIVATE
tracker_misc
commons
cnpy
TRex::OpenCV
TRex::LibPNG
TRex::LibZIP
TRex::LibZ
)
else()
target_link_libraries(tracker_python PRIVATE cnpy)
endif()
if(NOT pybind11_external)
target_link_libraries(tracker_python PUBLIC pybind11::pybind11 pybind11::embed pybind11::module)
else()
message(STATUS "not internal pybind11")
target_link_libraries(tracker_python PUBLIC ${PYTHON_LIBRARIES})
endif()
add_executable(trex_check_python check_python.cpp)
target_link_libraries(trex_check_python commons cnpy TRex::OpenCV TRex::LibZIP TRex::LibZ TRex::LibPNG)
add_dependencies(trex_check_python TRex::LibZIP)
add_dependencies(trex_check_python TRex::OpenCV)
if(NOT pybind11_external)
target_link_libraries(trex_check_python pybind11::pybind11 pybind11::embed pybind11::module)
else()
target_link_libraries(trex_check_python ${PYTHON_LIBRARIES})
endif()
add_dependencies(tracker_python trex_check_python )
install(TARGETS trex_check_python
EXPORT TRexCheckPython
LIBRARY DESTINATION usr/share/trex/lib
ARCHIVE DESTINATION usr/share/trex/lib
RUNTIME DESTINATION usr/share/trex
BUNDLE DESTINATION usr/share/trex
INCLUDES DESTINATION usr/share/trex/include
CONFIGURATIONS Release
)