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
007fafdf
Commit
007fafdf
authored
7 years ago
by
jwendt
Browse files
Options
Downloads
Plain Diff
Merge branch 'hotfix/conanfile_fix'
parents
4988bf65
2f57a68a
No related branches found
No related tags found
3 merge requests
!148
feature/#480_Create_a_smaller_test _mesh_for_combustion_demo
,
!141
WIP: Resolve "Copy standard assets to build folder and remove resource path"
,
!85
WIP: Feature/234 continuous delivery
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 @
007fafdf
...
@@ -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