mirror of
https://github.com/pjreddie/darknet.git
synced 2023-08-10 21:13:14 +03:00
Update Readme.md - pragma-libs in How to compile
This commit is contained in:
10
README.md
10
README.md
@ -103,9 +103,9 @@ Then add to your created project:
|
||||
- (right click on project) -> properties -> C/C++ -> General -> Additional Include Directories, put here:
|
||||
|
||||
`C:\opencv_2.4.9\opencv\build\include;..\..\3rdparty\include;%(AdditionalIncludeDirectories);$(CudaToolkitIncludeDir);$(cudnn)\include`
|
||||
- right click on project -> Build dependecies -> Build Customizations -> set check on CUDA 8.0 or what version you have - for example as here: http://devblogs.nvidia.com/parallelforall/wp-content/uploads/2015/01/VS2013-R-5.jpg
|
||||
- (right click on project) -> Build dependecies -> Build Customizations -> set check on CUDA 8.0 or what version you have - for example as here: http://devblogs.nvidia.com/parallelforall/wp-content/uploads/2015/01/VS2013-R-5.jpg
|
||||
- add to project all .c & .cu files from `\src`
|
||||
- (right click on project) -> properties -> Linker -> General -> Additional Library Directories, put here:
|
||||
- (right click on project) -> properties -> Linker -> General -> Additional Library Directories, put here:
|
||||
|
||||
`C:\opencv_2.4.9\opencv\build\x64\vc12\lib;$(CUDA_PATH)lib\$(PlatformName);$(cudnn)\lib\x64;%(AdditionalLibraryDirectories)`
|
||||
- (right click on project) -> properties -> Linker -> Input -> Additional dependecies, put here:
|
||||
@ -113,6 +113,12 @@ Then add to your created project:
|
||||
`..\..\3rdparty\lib\x64\pthreadVC2.lib;cublas.lib;curand.lib;cudart.lib;cudnn.lib;%(AdditionalDependencies)`
|
||||
- (right click on project) -> properties -> C/C++ -> Preprocessor -> Preprocessor Definitions
|
||||
|
||||
- open file: `\src\yolo.c` and change 3 lines to your OpenCV-version - `249` (for 2.4.9), `2413` (for 2.4.13), ... :
|
||||
|
||||
* `#pragma comment(lib, "opencv_core249.lib")`
|
||||
* `#pragma comment(lib, "opencv_imgproc249.lib")`
|
||||
* `#pragma comment(lib, "opencv_highgui249.lib")`
|
||||
|
||||
`OPENCV;_TIMESPEC_DEFINED;_CRT_SECURE_NO_WARNINGS;GPU;WIN32;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions)`
|
||||
- compile to .exe (X64 & Release) and put .dll-s near with .exe:
|
||||
|
||||
|
Reference in New Issue
Block a user