File tree 13 files changed +13
-13
lines changed
13 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall -Ofast -Wfatal-errors -
27
27
cuda_add_library(myplugins SHARED ${PROJECT_SOURCE_DIR} /prelu.cu)
28
28
29
29
find_package (OpenCV)
30
- include_directories (OpenCV_INCLUDE_DIRS)
30
+ include_directories (${ OpenCV_INCLUDE_DIRS} )
31
31
32
32
add_executable (arcface-r50 ${PROJECT_SOURCE_DIR} /arcface-r50.cpp)
33
33
target_link_libraries (arcface-r50 nvinfer)
Original file line number Diff line number Diff line change 22
22
endif ()
23
23
24
24
find_package (OpenCV)
25
- include_directories (OpenCV_INCLUDE_DIRS)
25
+ include_directories (${ OpenCV_INCLUDE_DIRS} )
26
26
27
27
add_executable (crnn ${PROJECT_SOURCE_DIR} /crnn.cpp)
28
28
target_link_libraries (crnn nvinfer)
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ find_package(CUDA REQUIRED)
13
13
include_directories (${PROJECT_SOURCE_DIR} /include )
14
14
15
15
find_package (OpenCV)
16
- include_directories (OpenCV_INCLUDE_DIRS)
16
+ include_directories (${ OpenCV_INCLUDE_DIRS} )
17
17
18
18
add_executable (dbnet ${PROJECT_SOURCE_DIR} /dbnet.cpp)
19
19
target_link_libraries (dbnet nvinfer)
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ link_directories(/usr/lib/x86_64-linux-gnu/)
22
22
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -pthread -Wall -Ofast -Wfatal-errors -D_MWAITXINTRIN_H_INCLUDED" )
23
23
24
24
find_package (OpenCV)
25
- include_directories (OpenCV_INCLUDE_DIRS)
25
+ include_directories (${ OpenCV_INCLUDE_DIRS} )
26
26
27
27
file (GLOB SOURCE_FILES "*.h" "*.cpp" )
28
28
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall -Ofast -Wfatal-errors -
25
25
26
26
27
27
find_package (OpenCV)
28
- include_directories (OpenCV_INCLUDE_DIRS)
28
+ include_directories (${ OpenCV_INCLUDE_DIRS} )
29
29
30
30
file (GLOB SOURCE_FILES "*.h" "*.cpp" )
31
31
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ cuda_add_library(decodeplugin SHARED ${PROJECT_SOURCE_DIR}/decode.cu)
26
26
target_link_libraries (decodeplugin nvinfer cudart)
27
27
28
28
find_package (OpenCV)
29
- include_directories (OpenCV_INCLUDE_DIRS)
29
+ include_directories (${ OpenCV_INCLUDE_DIRS} )
30
30
31
31
add_executable (retina_r50 ${PROJECT_SOURCE_DIR} /calibrator.cpp ${PROJECT_SOURCE_DIR} /retina_r50.cpp)
32
32
target_link_libraries (retina_r50 nvinfer)
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall -Ofast -Wfatal-errors -
27
27
cuda_add_library(myplugins SHARED ${PROJECT_SOURCE_DIR} /decode.cu)
28
28
29
29
find_package (OpenCV)
30
- include_directories (OpenCV_INCLUDE_DIRS)
30
+ include_directories (${ OpenCV_INCLUDE_DIRS} )
31
31
32
32
add_executable (retinafaceAntiCov ${PROJECT_SOURCE_DIR} /retinafaceAntiCov.cpp)
33
33
target_link_libraries (retinafaceAntiCov nvinfer)
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ find_package(CUDA REQUIRED)
13
13
include_directories (${PROJECT_SOURCE_DIR} /include )
14
14
15
15
find_package (OpenCV)
16
- include_directories (OpenCV_INCLUDE_DIRS)
16
+ include_directories (${ OpenCV_INCLUDE_DIRS} )
17
17
18
18
add_executable (lane_det ${PROJECT_SOURCE_DIR} /lane_det.cpp)
19
19
target_link_libraries (lane_det nvinfer)
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ cuda_add_library(yololayer SHARED ${PROJECT_SOURCE_DIR}/yololayer.cu)
25
25
target_link_libraries (yololayer nvinfer cudart)
26
26
27
27
find_package (OpenCV)
28
- include_directories (OpenCV_INCLUDE_DIRS)
28
+ include_directories (${ OpenCV_INCLUDE_DIRS} )
29
29
30
30
add_executable (yolov3-spp ${PROJECT_SOURCE_DIR} /yolov3-spp.cpp)
31
31
target_link_libraries (yolov3-spp nvinfer)
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ cuda_add_library(yololayer SHARED ${PROJECT_SOURCE_DIR}/yololayer.cu)
29
29
target_link_libraries (yololayer nvinfer cudart)
30
30
31
31
find_package (OpenCV)
32
- include_directories (OpenCV_INCLUDE_DIRS)
32
+ include_directories (${ OpenCV_INCLUDE_DIRS} )
33
33
34
34
add_executable (yolov3-tiny ${PROJECT_SOURCE_DIR} /yolov3-tiny.cpp)
35
35
target_link_libraries (yolov3-tiny nvinfer)
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ include_directories(/usr/include/x86_64-linux-gnu/)
20
20
link_directories (/usr/lib/x86_64-linux-gnu/)
21
21
22
22
find_package (OpenCV)
23
- include_directories (OpenCV_INCLUDE_DIRS)
23
+ include_directories (${ OpenCV_INCLUDE_DIRS} )
24
24
25
25
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall -Ofast -Wfatal-errors -D_MWAITXINTRIN_H_INCLUDED" )
26
26
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ cuda_add_library(myplugins SHARED ${PROJECT_SOURCE_DIR}/yololayer.cu ${PROJECT_S
25
25
target_link_libraries (myplugins nvinfer cudart)
26
26
27
27
find_package (OpenCV)
28
- include_directories (OpenCV_INCLUDE_DIRS)
28
+ include_directories (${ OpenCV_INCLUDE_DIRS} )
29
29
30
30
add_executable (yolov4 ${PROJECT_SOURCE_DIR} /yolov4.cpp)
31
31
target_link_libraries (yolov4 nvinfer)
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ cuda_add_library(myplugins SHARED ${PROJECT_SOURCE_DIR}/yololayer.cu)
25
25
target_link_libraries (myplugins nvinfer cudart)
26
26
27
27
find_package (OpenCV)
28
- include_directories (OpenCV_INCLUDE_DIRS)
28
+ include_directories (${ OpenCV_INCLUDE_DIRS} )
29
29
30
30
add_executable (yolov5 ${PROJECT_SOURCE_DIR} /calibrator.cpp ${PROJECT_SOURCE_DIR} /yolov5.cpp)
31
31
target_link_libraries (yolov5 nvinfer)
You can’t perform that action at this time.
0 commit comments