Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Project_Phoenix
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LuFG VR VIS
VR-Group
Project_Phoenix
Commits
2f57a68a
Commit
2f57a68a
authored
Sep 5, 2017
by
jwendt
Browse files
Options
Downloads
Patches
Plain Diff
fixing faulty conanfile changes
parent
4988bf65
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
conanfile.py
+7
-8
7 additions, 8 deletions
conanfile.py
with
7 additions
and
8 deletions
conanfile.py
+
7
−
8
View file @
2f57a68a
...
@@ -36,17 +36,16 @@ class ProjectPhoenix(ConanFile):
...
@@ -36,17 +36,16 @@ class ProjectPhoenix(ConanFile):
(
"
freeimage/3.17.0@RWTH-VR/thirdparty
"
))
# comma separated list of requirements
(
"
freeimage/3.17.0@RWTH-VR/thirdparty
"
))
# comma separated list of requirements
generators
=
"
cmake
"
generators
=
"
cmake
"
def
configure
(
self
):
def
configure
(
self
):
self
.
options
[
"
freeimage
"
].
shared
=
True
self
.
options
[
"
freeimage
"
].
shared
=
True
self
.
options
[
"
glew
"
].
shared
=
True
def
imports
(
self
):
def
imports
(
self
):
self
.
copy
(
"
*.dll
"
,
dst
=
"
bin
"
,
src
=
"
bin
"
)
self
.
copy
(
"
*.dll
"
,
dst
=
"
lib
"
,
src
=
"
bin
"
)
self
.
copy
(
"
*.dll
"
,
dst
=
"
tests/Debug
"
,
src
=
"
bin
"
)
self
.
copy
(
"
*.dll
"
,
dst
=
"
tests/Debug
"
,
src
=
"
bin
"
)
self
.
copy
(
"
*.dll
"
,
dst
=
"
demos/viewer/Debug
"
,
src
=
"
bin
"
)
self
.
copy
(
"
*.dll
"
,
dst
=
"
tests/Release
"
,
src
=
"
bin
"
)
self
.
copy
(
"
*.dll
"
,
dst
=
"
tests/Release
"
,
src
=
"
bin
"
)
self
.
copy
(
"
*.dll
"
,
dst
=
"
demos/viewer/Debug
"
,
src
=
"
bin
"
)
self
.
copy
(
"
*.dll
"
,
dst
=
"
demos/viewer/Release
"
,
src
=
"
bin
"
)
self
.
copy
(
"
*.dll
"
,
dst
=
"
demos/viewer/Release
"
,
src
=
"
bin
"
)
self
.
copy
(
"
*.so.*
"
,
dst
=
"
tests
"
,
src
=
"
lib
"
)
self
.
copy
(
"
*.so
"
,
dst
=
"
lib
"
,
src
=
"
lib
"
)
self
.
copy
(
"
*.so
"
,
dst
=
"
tests
"
,
src
=
"
lib
"
)
if
self
.
settings
.
os
==
"
Linux
"
:
self
.
copy
(
"
*.so.2.1
"
,
dst
=
"
tests
"
,
src
=
"
lib
"
)
self
.
run
(
"
ln -s libGLEW.so lib/libGLEW.so.2.1
"
)
\ No newline at end of file
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