Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
py-bake
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
sds
py-bake
Commits
39fd738b
Commit
39fd738b
authored
Sep 26, 2018
by
Matthieu Dorier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
adding flag to tell compiler to use C++11
parent
0985e51f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
setup.py
setup.py
+3
-0
No files found.
setup.py
View file @
39fd738b
...
...
@@ -43,12 +43,14 @@ pybake_server_module = Extension('_pybakeserver', ["pybake/src/server.cpp"],
libraries
=
server_libraries
,
library_dirs
=
server_library_dirs
,
include_dirs
=
server_include_dirs
,
extra_compile_args
=
[
'-std=c++11'
],
depends
=
[
"pybake/src/server.cpp"
])
pybake_client_module
=
Extension
(
'_pybakeclient'
,
[
"pybake/src/client.cpp"
],
libraries
=
client_libraries
,
library_dirs
=
client_library_dirs
,
include_dirs
=
client_include_dirs
,
extra_compile_args
=
[
'-std=c++11'
],
depends
=
[
"pybake/src/client.cpp"
],
define_macros
=
[(
'HAS_NUMPY'
,
has_numpy
)])
...
...
@@ -56,6 +58,7 @@ pybake_target_module = Extension('_pybaketarget', ["pybake/src/target.cpp"],
libraries
=
target_libraries
,
library_dirs
=
target_library_dirs
,
include_dirs
=
target_include_dirs
,
extra_compile_args
=
[
'-std=c++11'
],
depends
=
[
"pybake/src/target.cpp"
])
setup
(
name
=
'pybake'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment