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
dc62495d
Commit
dc62495d
authored
15 years ago
by
brad kittenbrink
Browse files
Options
Downloads
Plain Diff
Merged my big mondo merge and boost package changes with nat's DEV-34837 work.
parents
94565614
47e547fc
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
indra/cmake/Linking.cmake
+1
-0
1 addition, 0 deletions
indra/cmake/Linking.cmake
indra/llcommon/CMakeLists.txt
+14
-8
14 additions, 8 deletions
indra/llcommon/CMakeLists.txt
with
15 additions
and
8 deletions
indra/cmake/Linking.cmake
+
1
−
0
View file @
dc62495d
...
@@ -19,6 +19,7 @@ if (NOT STANDALONE)
...
@@ -19,6 +19,7 @@ if (NOT STANDALONE)
set
(
ARCH_PREBUILT_DIRS_RELEASE
${
LIBS_PREBUILT_DIR
}
/
${
LL_ARCH_DIR
}
/lib_release
)
set
(
ARCH_PREBUILT_DIRS_RELEASE
${
LIBS_PREBUILT_DIR
}
/
${
LL_ARCH_DIR
}
/lib_release
)
set
(
ARCH_PREBUILT_DIRS
${
ARCH_PREBUILT_DIRS_RELEASE
}
)
set
(
ARCH_PREBUILT_DIRS
${
ARCH_PREBUILT_DIRS_RELEASE
}
)
set
(
ARCH_PREBUILT_DIRS_DEBUG
${
ARCH_PREBUILT_DIRS_RELEASE
}
)
set
(
ARCH_PREBUILT_DIRS_DEBUG
${
ARCH_PREBUILT_DIRS_RELEASE
}
)
set
(
SHARED_LIB_STAGING_DIR
${
CMAKE_BINARY_DIR
}
/sharedlibs CACHE FILEPATH
"Location of staged DLLs"
)
endif
(
WINDOWS
)
endif
(
WINDOWS
)
endif
(
NOT STANDALONE
)
endif
(
NOT STANDALONE
)
...
...
This diff is collapsed.
Click to expand it.
indra/llcommon/CMakeLists.txt
+
14
−
8
View file @
dc62495d
...
@@ -244,22 +244,28 @@ if(LLCOMMON_LINK_SHARED)
...
@@ -244,22 +244,28 @@ if(LLCOMMON_LINK_SHARED)
# llcommon.dll get written to the DLL staging directory.
# llcommon.dll get written to the DLL staging directory.
# Also this directory is shared with RunBuildTest.cmake, y'know, for the tests.
# Also this directory is shared with RunBuildTest.cmake, y'know, for the tests.
set_target_properties
(
llcommon PROPERTIES RUNTIME_OUTPUT_DIRECTORY
${
SHARED_LIB_STAGING_DIR
}
)
set_target_properties
(
llcommon PROPERTIES RUNTIME_OUTPUT_DIRECTORY
${
SHARED_LIB_STAGING_DIR
}
)
endif
(
SHARED_LIB_STAGING_DIR
)
if
(
NOT WINDOWS
)
get_target_property
(
LLCOMMON_PATH llcommon LOCATION
)
if
(
LINUX
)
get_filename_component
(
LLCOMMON_FILE
${
LLCOMMON_PATH
}
NAME
)
get_target_property
(
LLCOMMON_PATH llcommon LOCATION
)
add_custom_command
(
get_filename_component
(
LLCOMMON_FILE
${
LLCOMMON_PATH
}
NAME
)
add_custom_command
(
TARGET llcommon POST_BUILD
TARGET llcommon POST_BUILD
COMMAND
${
CMAKE_COMMAND
}
COMMAND
${
CMAKE_COMMAND
}
ARGS
ARGS
-E
-E
copy_if_different
copy_if_different
${
LLCOMMON_
FILE
}
${
LLCOMMON_
PATH
}
${
SHARED_LIB_STAGING_DIR
}
/
${
CMAKE_CFG_INTDIR
}
/
${
LLCOMMON_FILE
}
${
SHARED_LIB_STAGING_DIR
}
/
${
CMAKE_CFG_INTDIR
}
/
${
LLCOMMON_FILE
}
COMMENT
"Copying llcommon to the staging folder."
COMMENT
"Copying llcommon to the staging folder."
)
)
endif
(
LINUX
)
endif
(
NOT WINDOWS
)
endif
(
SHARED_LIB_STAGING_DIR
)
if
(
DARWIN
)
set_target_properties
(
llcommon PROPERTIES
BUILD_WITH_INSTALL_RPATH 1
INSTALL_NAME_DIR
"@executable_path/../Resources"
)
endif
(
DARWIN
)
else
(
LLCOMMON_LINK_SHARED
)
else
(
LLCOMMON_LINK_SHARED
)
add_library
(
llcommon
${
llcommon_SOURCE_FILES
}
)
add_library
(
llcommon
${
llcommon_SOURCE_FILES
}
)
...
...
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