Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[headers] remove many installed files which should remain private, add more fixes for downstream projects #2952

Merged
merged 22 commits into from
Jun 5, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
77917d0
[headers] move .h files to our own subfolder to avoid clashes with ot…
cenit Apr 17, 2019
ff7d920
[build.sh] use correct osx triplet name
cenit Apr 17, 2019
eebe735
[FindCUDNN] fix unnecessary message and dll symbol
cenit Apr 18, 2019
df0d33d
[build.sh] fix problems with empty env variables
cenit Apr 18, 2019
6497ba1
[dark.lib] set correct function visibility when building shared libs …
cenit Apr 18, 2019
f0a158e
[ci] add tests with vcpkg on linux
cenit Apr 18, 2019
b8962b2
disable vcpkg bootstrap when not required
cenit Apr 18, 2019
73cc42c
improve CI compatibility with updated opencv@2 and opencv@3 on mac, f…
cenit Apr 23, 2019
b805bde
[travis,cuda] add missing symbol
cenit Apr 23, 2019
49986d5
install header files to darknet/ subfolder
cenit Apr 23, 2019
c2071db
fully recicle install location in target definition
cenit Apr 23, 2019
21e6372
[ci] allow vcpkg failures, export CC and CXX symbols, use stb from vc…
cenit Apr 30, 2019
3a20020
[ci] extend timeout for vcpkg, add all vcpkg configs to allowed failures
cenit Apr 30, 2019
84ee1f4
[travis] disable vcpkg's built opencv[cuda] also on cuda-enabled conf…
cenit Apr 30, 2019
f27f7cc
move towards using only modern cmake
cenit May 12, 2019
52dabbb
move towards using only modern cmake - part 2
cenit May 13, 2019
d21dc00
move towards using only modern cmake - part 3
cenit May 13, 2019
920b29f
fixes for ci and included files
cenit May 13, 2019
d853658
fix symbols usage
cenit May 14, 2019
5e242df
remove deprecated json file
cenit May 14, 2019
578d1c0
[cmake+cuda] improve friendliness of architecture selection
cenit May 20, 2019
a3d5cc4
Merge branch 'master' into dev/cenit/include
cenit May 25, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
*.so
*.exe
*.dll
*.lib
mnist/
data/
caffe/
Expand Down Expand Up @@ -34,6 +35,10 @@ Thumbs.db
.vs/
.vscode/

# Managed by CMake
src/version.h

# Build artifacts
lib/
include/
share/
include/darknet/
Loading