in yolo_cpp_dll.sln, miss a “\”

I open yolo_cpp_dll.sln, and check the config.  "\" is missed.
Linker -> General -> Additional Library Directories
$(CUDA_PATH)lib\$(PlatformName)-->$(CUDA_PATH)\lib\$(PlatformName)
This commit is contained in:
duohappy 2018-12-29 20:14:08 +08:00 committed by GitHub
parent 21a4ec9390
commit 7612131abb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -201,7 +201,7 @@ Then add to your created project:
- add to project all `.c` & `.cu` files and file `http_stream.cpp` from `\src`
- (right click on project) -> properties -> Linker -> General -> Additional Library Directories, put here:
`C:\opencv_3.0\opencv\build\x64\vc14\lib;$(CUDA_PATH)lib\$(PlatformName);$(cudnn)\lib\x64;%(AdditionalLibraryDirectories)`
`C:\opencv_3.0\opencv\build\x64\vc14\lib;$(CUDA_PATH)\lib\$(PlatformName);$(cudnn)\lib\x64;%(AdditionalLibraryDirectories)`
- (right click on project) -> properties -> Linker -> Input -> Additional dependecies, put here:
`..\..\3rdparty\lib\x64\pthreadVC2.lib;cublas.lib;curand.lib;cudart.lib;cudnn.lib;%(AdditionalDependencies)`