Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
Actor Framework
Commits
3f7fdeef
Commit
3f7fdeef
authored
Mar 13, 2014
by
Neverlord
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed config script for user-defined build dir
parent
7d07ea2f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
4 deletions
+12
-4
configure
configure
+12
-4
No files found.
configure
View file @
3f7fdeef
...
@@ -91,23 +91,31 @@ configure ()
...
@@ -91,23 +91,31 @@ configure ()
append_cache_entry CMAKE_CXX_COMPILER FILEPATH
$1
append_cache_entry CMAKE_CXX_COMPILER FILEPATH
$1
fi
fi
if
[[
"
$builddir
"
=
/
*
]]
;
then
# absolute path given
absolute_builddir
=
"
$builddir
"
else
# relative path given; convert to absolute path
absolute_builddir
=
"
$(
pwd
)
/
$builddir
"
fi
if
[
-n
"
$2
"
]
;
then
if
[
-n
"
$2
"
]
;
then
workdir
=
"
$builddir
-
$2
"
workdir
=
"
$
absolute_
builddir
-
$2
"
else
else
workdir
=
"
$builddir
"
workdir
=
"
$
absolute_
builddir
"
fi
fi
workdirs
=
"
$workdirs
$workdir
"
workdirs
=
"
$workdirs
$workdir
"
if
[
-n
"
$3
"
]
;
then
if
[
-n
"
$3
"
]
;
then
append_cache_entry EXECUTABLE_OUTPUT_PATH PATH
"
$3
"
append_cache_entry EXECUTABLE_OUTPUT_PATH PATH
"
$3
"
else
else
append_cache_entry EXECUTABLE_OUTPUT_PATH PATH
"
$
work
dir
/bin"
append_cache_entry EXECUTABLE_OUTPUT_PATH PATH
"
$
absolute_build
dir
/bin"
fi
fi
if
[
-n
"
$4
"
]
;
then
if
[
-n
"
$4
"
]
;
then
append_cache_entry LIBRARY_OUTPUT_PATH PATH
"
$4
"
append_cache_entry LIBRARY_OUTPUT_PATH PATH
"
$4
"
else
else
append_cache_entry LIBRARY_OUTPUT_PATH PATH
"
$
work
dir
/lib"
append_cache_entry LIBRARY_OUTPUT_PATH PATH
"
$
absolute_build
dir
/lib"
fi
fi
if
[
-d
$workdir
]
;
then
if
[
-d
$workdir
]
;
then
...
...
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