Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
ORNL Quantum Computing Institute
xacc
Commits
84c471f9
Commit
84c471f9
authored
Jan 31, 2018
by
Mccaskey, Alex
Browse files
linking boost lib dir
Signed-off-by:
Alex McCaskey
<
mccaskeyaj@ornl.gov
>
parent
290a52ac
Changes
3
Hide whitespace changes
Inline
Side-by-side
python/CMakeLists.txt
View file @
84c471f9
...
...
@@ -47,6 +47,7 @@ add_library(pyxacc SHARED xacc-py.cpp)
SET_TARGET_PROPERTIES
(
pyxacc PROPERTIES PREFIX
""
)
set
(
CppUsLib CppMicroServicesd
)
link_directories
(
${
CPPUS_LIBRARY_DIR
}
)
link_directories
(
${
Boost_LIBRARY_DIR
}
)
find_library
(
cppus_has_d_suffix CppMicroServicesd
)
if
(
NOT cppus_has_d_suffix
)
set
(
CppUsLib CppMicroServices
)
...
...
quantum/gate/CMakeLists.txt
View file @
84c471f9
...
...
@@ -55,6 +55,9 @@ usFunctionEmbedResources(TARGET ${LIBRARY_NAME}
FILES
manifest.json
)
link_directories
(
${
Boost_LIBRARY_DIR
}
)
set
(
CppUsLib CppMicroServicesd
)
link_directories
(
${
CPPUS_LIBRARY_DIR
}
)
...
...
xacc/CMakeLists.txt
View file @
84c471f9
...
...
@@ -49,6 +49,8 @@ file (GLOB SRC *.cpp program/*.cpp utils/*.cpp)
set
(
CppUsLib CppMicroServicesd
)
link_directories
(
${
CPPUS_LIBRARY_DIR
}
)
link_directories
(
${
Boost_LIBRARY_DIR
}
)
add_library
(
${
LIBRARY_NAME
}
SHARED
${
SRC
}
)
find_library
(
cppus_has_d_suffix CppMicroServicesd
)
if
(
NOT cppus_has_d_suffix
)
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment