Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
ar_sandbox_python
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AR_Sandbox
ar_sandbox_python
Merge requests
!1
Update of install process
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Update of install process
QL-devel
into
main
Overview
0
Commits
3
Pipelines
0
Changes
2
Merged
Quentin Leblanc
requested to merge
QL-devel
into
main
2 months ago
Overview
0
Commits
3
Pipelines
0
Changes
2
Expand
Updated install process with a more generic CMake
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
a756f6be
3 commits,
2 months ago
2 files
+
105
−
11
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
cpp/Makefile.valid
0 → 100644
+
24
−
0
Options
OPENCVFLAG
=
`
pkg-config
--libs
--cflags
opencv3
`
CAMERAFLAG
=
-lrealsense2
YAMLFLAG
=
-I
/usr/local/include
-L
/usr/local/lib
-lyaml-cpp
DEP_SANDBOX
=
$(
OPENCVFLAG
)
$(
CAMERAFLAG
)
$(
YAMLFLAG
)
SANDBOX
=
-I
/home/quentin/Documents/HEPIA/ar_sandbox_lib/inc
-L
/home/quentin/Documents/HEPIA/ar_sandbox_lib/build_test/lib
-lsandbox
CFLAGS
=
-std
=
c++11
-Wall
-Wextra
-g
-Ilib
-fPIC
WRAPPER_NAME
=
sandbox_wrapper.so
all
:
sandbox_wrapper.so
sandbox_wrapper
:
sandbox_wrapper.o
c++
-o
$@
$^
$(
shell python3-config
--libs
)
$(
CFLAGS
)
$(
SANDBOX
)
$(
DEP_SANDBOX
)
$(
LDFLAGS
)
sandbox_wrapper.so
:
sandbox_wrapper.o
c++
-O3
-shared
$(
CFLAGS
)
$(
shell python3
-m
pybind11
--includes
)
$^
-o
$(
WRAPPER_NAME
)$(
python3-config
--extension-suffix
)
$(
DEP_SANDBOX
)
$(
SANDBOX
)
sandbox_wrapper.o
:
sandbox_wrapper.cpp
c++
-c
$^
-o
$@
-I
/usr/include/python3.13
$(
python3
-m
pybind11
--includes
)
$(
CFLAGS
)
$(
SANDBOX
)
$(
DEP_SANDBOX
)
clean
:
rm
*
.so
*
.o
\ No newline at end of file
Loading