Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CGoGN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
David Cazier
CGoGN
Commits
dc5f62de
Commit
dc5f62de
authored
Jun 10, 2015
by
Sylvain Thery
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug compil
parent
4f7af6be
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
4 deletions
+17
-4
Apps/Tests/Container/attributeContainer.cpp
Apps/Tests/Container/attributeContainer.cpp
+3
-2
Apps/Tests/Container/attributeMultiVector.cpp
Apps/Tests/Container/attributeMultiVector.cpp
+4
-1
Apps/Tests/Container/containerBrowser.cpp
Apps/Tests/Container/containerBrowser.cpp
+4
-1
CMakeLists.txt
CMakeLists.txt
+6
-0
No files found.
Apps/Tests/Container/attributeContainer.cpp
View file @
dc5f62de
...
...
@@ -2,7 +2,8 @@
#include "Geometry/vector_gen.h"
using
namespace
CGoGN
;
namespace
CGoGN
{
// char instantiation
...
...
@@ -59,7 +60,7 @@ template void AttributeContainer::setData<char>(unsigned int attrIndex, unsigned
//template const Geom::Vec4f& AttributeContainer::getData<Geom::Vec4f>(unsigned int attrIndex, unsigned int eltIndex) const;
//template void AttributeContainer::setData<Geom::Vec4f>(unsigned int attrIndex, unsigned int eltIndex, const Geom::Vec4f& data);
}
int
test_attributeContainer
()
{
...
...
Apps/Tests/Container/attributeMultiVector.cpp
View file @
dc5f62de
...
...
@@ -2,7 +2,9 @@
#include "Geometry/vector_gen.h"
#include "Container/fakeAttribute.h"
using
namespace
CGoGN
;
namespace
CGoGN
{
template
class
AttributeMultiVector
<
char
>;
template
class
AttributeMultiVector
<
unsigned
char
>;
...
...
@@ -15,6 +17,7 @@ template class AttributeMultiVector<double>;
template
class
AttributeMultiVector
<
Geom
::
Vec3f
>;
template
class
AttributeMultiVector
<
NoTypeNameAttribute
<
std
::
vector
<
Geom
::
Vec2i
>
::
const_iterator
>
>
;
}
int
test_attributeMultiVector
()
{
...
...
Apps/Tests/Container/containerBrowser.cpp
View file @
dc5f62de
...
...
@@ -6,7 +6,9 @@
#include "Container/containerBrowser.h"
using
namespace
CGoGN
;
namespace
CGoGN
{
template
class
DartContainerBrowserSelector
<
EmbeddedMap2
>;
template
class
DartContainerBrowserSelector
<
EmbeddedMap3
>;
...
...
@@ -26,6 +28,7 @@ template class ContainerBrowserCellMarked<EmbeddedMap3, EDGE>;
template
class
ContainerBrowserCellMarked
<
EmbeddedMap3
,
FACE
>;
template
class
ContainerBrowserCellMarked
<
EmbeddedMap3
,
VOLUME
>;
}
int
test_containerBrowser
()
{
...
...
CMakeLists.txt
View file @
dc5f62de
...
...
@@ -239,6 +239,12 @@ LIST(APPEND CGoGN_EXT_LIBS
${
SUITESPARSE_LIBRARIES
}
)
# added for debug linking ??
IF
(
APPLE
)
FIND_LIBRARY
(
ACCELERATE_LIBRARY Accelerate
)
LIST
(
APPEND CGoGN_EXT_LIBS
${
ACCELERATE_LIBRARY
}
)
ENDIF
()
IF
(
NOT WIN32
)
LIST
(
APPEND CGoGN_EXT_LIBS pthread
)
#for c++11 thread
ENDIF
()
...
...
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