Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Commits
b3822148
Commit
b3822148
authored
6 years ago
by
Oz Linden
Browse files
Options
Downloads
Plain Diff
merge Nat's fix for llcorehttp test
parents
3d1e368a
ec8ee339
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
indra/llcorehttp/CMakeLists.txt
+18
-21
18 additions, 21 deletions
indra/llcorehttp/CMakeLists.txt
with
18 additions
and
21 deletions
indra/llcorehttp/CMakeLists.txt
+
18
−
21
View file @
b3822148
...
@@ -167,29 +167,26 @@ if (DARWIN)
...
@@ -167,29 +167,26 @@ if (DARWIN)
COMMENT
"Creating Resources directory in app bundle."
COMMENT
"Creating Resources directory in app bundle."
)
)
# Copy the required libraries to the package app
# Copy the required libraries to the package app
. We used to use a sequence
add_custom_command
(
TARGET INTEGRATION_TEST_llcorehttp PRE_BUILD
# of '${CMAKE_COMMAND} -E copy' commands, but 'cmake -E copy' does only a
COMMAND
${
CMAKE_COMMAND
}
-E copy
${
AUTOBUILD_INSTALL_DIR
}
/lib/release/libapr-1.0.dylib
${
LL_TEST_DESTINATION_DIR
}
# single file at a time: it doesn't understand wildcards. 'cmake -E copy' is
DEPENDS
${
AUTOBUILD_INSTALL_DIR
}
/lib/release/libapr-1.0.dylib
# for portability. This operation is Darwin-specific. We can count on the
)
# 'cp' command.
add_custom_command
(
TARGET INTEGRATION_TEST_llcorehttp PRE_BUILD
set
(
copy_dylibs
COMMAND
${
CMAKE_COMMAND
}
-E copy
${
AUTOBUILD_INSTALL_DIR
}
/lib/release/
libapr
util
-1.0.dylib
${
LL_TEST_DESTINATION_DIR
}
libapr-1.0.dylib
DEPENDS
${
AUTOBUILD_INSTALL_DIR
}
/lib/release/
libaprutil-1.0.dylib
libaprutil-1.0.dylib
)
libexception_handler.dylib
add_custom_command
(
TARGET INTEGRATION_TEST_llcorehttp PRE_BUILD
libnghttp2*.dylib
COMMAND
${
CMAKE_COMMAND
}
-E copy
${
AUTOBUILD_INSTALL_DIR
}
/lib/release/libexception_handler.dylib
${
LL_TEST_DESTINATION_DIR
}
${
EXPAT_COPY
}
DEPENDS
${
AUTOBUILD_INSTALL_DIR
}
/lib/release/libexception_handler.dylib
)
)
add_custom_command
(
TARGET INTEGRATION_TEST_llcorehttp PRE_BUILD
add_custom_command
(
TARGET INTEGRATION_TEST_llcorehttp PRE_BUILD
COMMAND
${
CMAKE_COMMAND
}
-E copy
${
AUTOBUILD_INSTALL_DIR
}
/lib/release/libnghttp2*.dylib
${
LL_TEST_DESTINATION_DIR
}
WORKING_DIRECTORY
"
${
AUTOBUILD_INSTALL_DIR
}
/lib/release"
DEPENDS
${
AUTOBUILD_INSTALL_DIR
}
/lib/release/libnghttp2.dylib
COMMAND cp -v
${
copy_dylibs
}
${
LL_TEST_DESTINATION_DIR
}
DEPENDS
${
copy_dylibs
}
)
)
foreach
(
expat
${
EXPAT_COPY
}
)
add_custom_command
(
TARGET INTEGRATION_TEST_llcorehttp PRE_BUILD
COMMAND
${
CMAKE_COMMAND
}
-E copy
${
AUTOBUILD_INSTALL_DIR
}
/lib/release/
${
expat
}
${
LL_TEST_DESTINATION_DIR
}
DEPENDS
${
AUTOBUILD_INSTALL_DIR
}
/lib/release/
${
expat
}
)
endforeach
(
expat
)
endif
(
DARWIN
)
endif
(
DARWIN
)
...
...
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