You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
836 B
39 lines
836 B
cmake_minimum_required (VERSION 3.5)
|
|
find_package( OpenCV REQUIRED )
|
|
|
|
message(STATUS "oPENCV Library status:")
|
|
message(STATUS ">version:${OpenCV_VERSION}")
|
|
message(STATUS "Include:${OpenCV_INCLUDE_DIRS}")
|
|
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
set(CMAKE_CXX_FLAGS "-Wno-error=deprecated-declarations -Wno-deprecated-declarations")
|
|
|
|
include_directories(
|
|
${CMAKE_CURRENT_SOURCE_DIR}/include
|
|
${PROJECT_SOURCE_DIR}/AlgorithmModule/include
|
|
${PROJECT_SOURCE_DIR}/ConfigModule/include
|
|
)
|
|
|
|
link_directories(
|
|
/usr/local/lib/
|
|
/usr/local/cuda/lib64
|
|
)
|
|
file(GLOB SRC_LISTS ${CMAKE_CURRENT_SOURCE_DIR}/*.cpp)
|
|
|
|
add_executable("test_FOG" ${SRC_LISTS})
|
|
|
|
target_link_libraries("test_FOG"
|
|
pthread
|
|
z
|
|
nvinfer
|
|
FOG_Check
|
|
Config
|
|
${OpenCV_LIBS}
|
|
)
|
|
# 设置该目标的RPATH
|
|
set_target_properties("test_FOG" PROPERTIES
|
|
BUILD_RPATH "\$ORIGIN"
|
|
)
|
|
set(ModuleName "") |