Skip to content
This repository was archived by the owner on Jul 20, 2023. It is now read-only.

Commit 48fcce3

Browse files
committed
Merge branch 'develop'
2 parents c6e94f6 + d99a2d7 commit 48fcce3

17 files changed

+429
-42
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,14 @@
5555
.vs*
5656
x64*
5757

58+
# documentation
59+
doc/
60+
doxygen/
61+
5862
*.log
5963
*.tlog
6064
*.TMP
6165
*.tmp
6266

6367

68+
build/

CMakeLists.txt

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.7.2)
22

33
##################################################
4-
set (VERSION_NUMBER "0.5.0")
4+
set (VERSION_NUMBER "0.6.0")
55
project("SolARModuleFBOW")
66
set (SOURCES
77
src/SolARModuleFBOW.cpp
@@ -14,14 +14,6 @@ set (HEADERS
1414
interfaces/SolARKeyframeRetrieverFBOW.h
1515
)
1616

17-
find_package(OpenGL REQUIRED)
18-
19-
20-
21-
include_directories(
22-
src/
23-
)
24-
2517
install (FILES "${CMAKE_CURRENT_SOURCE_DIR}/xpcf_SolARModuleFBOW_registry.xml" DESTINATION $ENV{BCOMDEVROOT}/.xpcf/SolAR/ )
2618

2719
##################################################

SolARModuleFBOW.pro

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,13 @@ CONFIG -= qt
44

55
## global defintions : target lib name, version
66
TARGET = SolARModuleFBOW
7-
INSTALLSUBDIR = bcomBuild
7+
88
FRAMEWORK = $$TARGET
9-
VERSION=0.5.0
9+
VERSION=0.6.0
1010

1111
DEFINES += MYVERSION=$${VERSION}
1212
DEFINES += TEMPLATE_LIBRARY
13-
CONFIG += Cpp11
14-
CONFIG += c++11
13+
CONFIG += c++1z
1514

1615

1716
CONFIG(debug,debug|release) {
@@ -25,10 +24,9 @@ CONFIG(release,debug|release) {
2524
}
2625

2726

28-
PROJECTDEPLOYDIR = $$(BCOMDEVROOT)/$${INSTALLSUBDIR}/$${FRAMEWORK}/$${VERSION}
29-
DEPENDENCIESCONFIG = shared
27+
DEPENDENCIESCONFIG = shared recurse
3028

31-
include ($$(BCOMDEVROOT)/builddefs/qmake/templatelibconfig.pri)
29+
include (../builddefs/qmake/templatelibconfig.pri)
3230

3331
## DEFINES FOR MSVC/INTEL C++ compilers
3432
msvc {
@@ -67,7 +65,7 @@ win32 {
6765
header_files.path = $${PROJECTDEPLOYDIR}/interfaces
6866
header_files.files = $$files($${PWD}/interfaces/*.h*)
6967

70-
xpcf_xml_files.path = $$(BCOMDEVROOT)/.xpcf/SolAR
68+
xpcf_xml_files.path = $$(HOME)/.xpcf/SolAR
7169
xpcf_xml_files.files=$$files($${PWD}/xpcf*.xml)
7270

7371
INSTALLS += header_files

bcom-SolARModuleFBOW.pc.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ libdir=${exec_prefix}/lib
55
includedir=${prefix}/interfaces
66
Name: SolARModuleFBOW
77
Description:
8-
Version: 0.5.0
8+
Version: 0.6.0
99
Requires:
1010
Libs: -L${libdir} -l${libname}
1111
Libs.private: ${libdir}/${pfx}${libname}.${lext}

0 commit comments

Comments
 (0)