Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
CGoGN
CGoGN
Commits
b0d91d17
Commit
b0d91d17
authored
Nov 24, 2015
by
Sylvain Thery
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SuiteSparse mac linking bug
parent
87fcb3c9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
6 deletions
+18
-6
Apps/Tests/Utils/quantization.cpp
Apps/Tests/Utils/quantization.cpp
+6
-6
cmake_modules/FindSuiteSparse.cmake
cmake_modules/FindSuiteSparse.cmake
+12
-0
No files found.
Apps/Tests/Utils/quantization.cpp
View file @
b0d91d17
...
...
@@ -3,15 +3,15 @@
using
namespace
CGoGN
;
template
struct
Utils
::
CodeVector
<
Geom
::
Vec3f
>;
template
struct
Utils
::
CodeVector
<
Geom
::
Vec3d
>;
template
struct
Utils
::
CodeVector
<
Geom
::
Vec4d
>;
//
template struct Utils::CodeVector<Geom::Vec3f>;
//
template struct Utils::CodeVector<Geom::Vec3d>;
//
template struct Utils::CodeVector<Geom::Vec4d>;
template
class
Utils
::
Quantization
<
Geom
::
Vec3f
>;
template
class
Utils
::
Quantization
<
Geom
::
Vec3d
>;
template
class
Utils
::
Quantization
<
Geom
::
Vec4d
>;
//
template class Utils::Quantization<Geom::Vec3f>;
//
template class Utils::Quantization<Geom::Vec3d>;
//
template class Utils::Quantization<Geom::Vec4d>;
int
test_quantization
()
...
...
cmake_modules/FindSuiteSparse.cmake
View file @
b0d91d17
...
...
@@ -390,6 +390,18 @@ if(SUITESPARSE_USE_LAPACK_BLAS)
endif
()
find_library
(
SSPARSE_CONFIG_LIB
NAMES libsuitesparseconfig suitesparseconfig
PATHS /opt/local/lib
${
SUITESPARSE_SEARCH_LIB_POSTFIX
}
/usr/lib
${
SUITESPARSE_SEARCH_LIB_POSTFIX
}
/usr/local/lib
${
SUITESPARSE_SEARCH_LIB_POSTFIX
}
${
SUITESPARSE_DIR
}
PATH_SUFFIXES Release Debug
)
if
(
SSPARSE_CONFIG_LIB
)
list
(
APPEND SUITESPARSE_LIBRARIES
${
SSPARSE_CONFIG_LIB
}
)
endif
()
if
(
SUITESPARSE_INCLUDE_DIRS
)
list
(
REMOVE_DUPLICATES SUITESPARSE_INCLUDE_DIRS
)
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