Skip to content

Commit d19dae8

Browse files
committed
Merge branch 'develop'
2 parents 063e5cd + cecc7f2 commit d19dae8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+1354
-341
lines changed

.appveyor.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,3 +106,7 @@ build_script:
106106
test_script:
107107
#- cmd: ctest --build-config %Configuration% --parallel 4 --output-on-failure
108108
#- sh: ctest -j4
109+
110+
on_success:
111+
- cmd: 7z a OpenMVS_x64.7z "C:\projects\openmvs\bin\bin\x64\%Configuration%\*.exe" "C:\projects\openmvs\bin\bin\x64\%Configuration%\*.dll"
112+
- cmd: appveyor PushArtifact OpenMVS_x64.7z

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,13 @@
2626
*.exe
2727
*.out
2828
*.app
29+
30+
# Custom
31+
*.tmp
32+
.DS_Store
33+
CMakeSettings.json
34+
.vs/
35+
.idea/
36+
.vscode/
37+
bin/
38+
binaries/

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ See the complete [documentation](https://github.com/cdcseacave/openMVS/wiki) on
1414
## Build
1515

1616
See the [building](https://github.com/cdcseacave/openMVS/wiki/Building) wiki page. Windows and Ubuntu x64 continuous integration status [![Build Status](https://ci.appveyor.com/api/projects/status/github/cdcseacave/openmvs?branch=master&svg=true)](https://ci.appveyor.com/project/cdcseacave/openmvs)
17+
Automatic Windows x64 binary builds can be found for each commit on its Appveyor Artifacts page.
1718

1819
## Example
1920

apps/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Add applications
2+
ADD_SUBDIRECTORY(InterfaceCOLMAP)
23
ADD_SUBDIRECTORY(InterfaceVisualSFM)
34
ADD_SUBDIRECTORY(DensifyPointCloud)
45
ADD_SUBDIRECTORY(ReconstructMesh)
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
if(MSVC)
2+
FILE(GLOB LIBRARY_FILES_C "*.cpp" "*.rc")
3+
else()
4+
FILE(GLOB LIBRARY_FILES_C "*.cpp")
5+
endif()
6+
FILE(GLOB LIBRARY_FILES_H "*.h" "*.inl")
7+
8+
cxx_executable_with_flags_no_pch(InterfaceCOLMAP "Apps" "${cxx_default}" "MVS" ${LIBRARY_FILES_C} ${LIBRARY_FILES_H})
9+
10+
if(3Dnovator_USE_BREAKPAD AND BREAKPAD_FOUND)
11+
target_link_libraries(InterfaceCOLMAP ${BREAKPAD_LIBS})
12+
endif()
13+
14+
# Install
15+
INSTALL(TARGETS InterfaceCOLMAP
16+
EXPORT 3DnovatorTargets
17+
RUNTIME DESTINATION "${INSTALL_BIN_DIR}" COMPONENT bin)

0 commit comments

Comments
 (0)