Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
BornAgain
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
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mlz
BornAgain
Commits
aba37e00
Commit
aba37e00
authored
11 years ago
by
Van Herck, Walter
Browse files
Options
Downloads
Patches
Plain Diff
Python lib build for windows
parent
44555a58
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
BornAgain.pro
+1
-1
1 addition, 1 deletion
BornAgain.pro
Core/Core.pro
+1
-1
1 addition, 1 deletion
Core/Core.pro
shared.pri
+16
-6
16 additions, 6 deletions
shared.pri
with
18 additions
and
8 deletions
BornAgain.pro
+
1
−
1
View file @
aba37e00
...
@@ -8,7 +8,7 @@ macx|unix {
...
@@ -8,7 +8,7 @@ macx|unix {
ROOT
=
$$
system
(
root
-
config
--
prefix
)
ROOT
=
$$
system
(
root
-
config
--
prefix
)
}
}
win32
{
win32
{
ROOT
=
"C:/root"
#
ROOT
=
"C:/root"
}
}
isEmpty
(
ROOT
)
{
isEmpty
(
ROOT
)
{
message
(
"No ROOT installation found. libBornAgainFit and App"
will
not
be
compiled
.)
message
(
"No ROOT installation found. libBornAgainFit and App"
will
not
be
compiled
.)
...
...
This diff is collapsed.
Click to expand it.
Core/Core.pro
+
1
−
1
View file @
aba37e00
...
@@ -6,7 +6,7 @@ TEMPLATE = lib
...
@@ -6,7 +6,7 @@ TEMPLATE = lib
CONFIG
+=
lib
#
to
remove
versions
from
file
name
CONFIG
+=
lib
#
to
remove
versions
from
file
name
QT
-=
core
gui
QT
-=
core
gui
#
QMAKE_EXTENSION_SHLIB
=
so
#
making
standard
*.
so
extension
#
QMAKE_EXTENSION_SHLIB
=
so
#
making
standard
*.
so
extension
#
CONFIG
+=
BORNAGAIN_PYTHON
CONFIG
+=
BORNAGAIN_PYTHON
#
-----------------------------------------------------------------------------
#
-----------------------------------------------------------------------------
#
common
project
settings
#
common
project
settings
...
...
This diff is collapsed.
Click to expand it.
shared.pri
+
16
−
6
View file @
aba37e00
...
@@ -240,16 +240,26 @@ CONFIG(BORNAGAIN_ROOT) {
...
@@ -240,16 +240,26 @@ CONFIG(BORNAGAIN_ROOT) {
#CONFIG += BORNAGAIN_PYTHON
#CONFIG += BORNAGAIN_PYTHON
CONFIG(BORNAGAIN_PYTHON) {
CONFIG(BORNAGAIN_PYTHON) {
# user wants to compile python module
# user wants to compile python module
WhichPython=$$system(which python)
macx|unix {
WhichPython=$$system(which python)
}
win32 {
WhichPython="C:/Python27"
}
isEmpty(WhichPython) {
isEmpty(WhichPython) {
# we do not have python
# we do not have python
error("Can not find any sign of python")
error("Can not find any sign of python")
} else {
} else {
# we have python
# we have python
pythonvers=$$system("python -c 'import sys; sys.stdout.write(sys.version[:3])'")
pythonvers=$$system("python -c \"import sys; sys.stdout.write(sys.version[:3])\" ")
pythonsysincdir=$$system("python -c 'import sys; sys.stdout.write(sys.prefix + \"/include/python\" + sys.version[:3])'")
macx|unix {
#pythonsyslibdir=$$system("python -c 'import sys; sys.stdout.write(sys.prefix + \"/lib/python\" + sys.version[:3])'")
pythonsysincdir=$$system("python -c 'import sys; sys.stdout.write(sys.prefix + \"/include/python\" + sys.version[:3])'")
pythonsyslibdir=$$system("python -c 'import sys; sys.stdout.write(sys.prefix + \"/lib\" )'")
pythonsyslibdir=$$system("python -c 'import sys; sys.stdout.write(sys.prefix + \"/lib\" )'")
}
win32 {
pythonsysincdir=$${WhichPython}/include
pythonsyslibdir=$${WhichPython}/libs
}
#message(we have python)
#message(we have python)
#message($$pythonvers)
#message($$pythonvers)
#message($$pythonsysincdir)
#message($$pythonsysincdir)
...
@@ -260,7 +270,7 @@ CONFIG(BORNAGAIN_PYTHON) {
...
@@ -260,7 +270,7 @@ CONFIG(BORNAGAIN_PYTHON) {
LIBS += -lboost_python -L$$pythonsyslibdir -lpython$$pythonvers
LIBS += -lboost_python -L$$pythonsyslibdir -lpython$$pythonvers
# we need to know the location of numpy
# we need to know the location of numpy
pythonnumpy=$$system("python -c
'
import sys; import numpy; sys.stdout.write(numpy.get_include())
'
")
pythonnumpy=$$system("python -c
\"
import sys; import numpy; sys.stdout.write(numpy.get_include())
\"
")
!exists($$pythonnumpy/numpy/arrayobject.h): error("Can't find numpy/arrayobject.h in $$pythonnumpy, you have to install python-numpy-devel")
!exists($$pythonnumpy/numpy/arrayobject.h): error("Can't find numpy/arrayobject.h in $$pythonnumpy, you have to install python-numpy-devel")
INCLUDEPATH += $$pythonnumpy
INCLUDEPATH += $$pythonnumpy
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment