Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
CMake
CMake
Commits
c5e7d5a7
Commit
c5e7d5a7
authored
Aug 31, 2000
by
Bill Hoffman
Browse files
BUG: fix build of lib.a problem
parent
382b9d05
Changes
2
Show whitespace changes
Inline
Side-by-side
CMakeVariables.make.in
View file @
c5e7d5a7
...
...
@@ -84,7 +84,7 @@ BIN_INSTALL_DIR = $(INSTALL_ROOT)$(exec_prefix)/bin
# set up the path to the rulesgen program
CMAKE = @CMAKE_OBJ_DIR@/CMake/Source/CMakeBuildTargets
KIT_OBJ = ${SRC_OBJ} ${EXTRA_KIT_OBJ}
BUILD_LIB_FILE = lib${ME}${ITK_LIB_EXT}
# ***** BEGIN VARIBLES THAT CAN BE OVERRIDDEN IN CMakeLocal.make.in **************
...
...
Source/cmUnixMakefile.cxx
View file @
c5e7d5a7
...
...
@@ -82,7 +82,12 @@ void cmUnixMakefile::OutputMakefile(const char* file)
}
fout
<<
"
\n
"
;
}
if
(
strlen
(
this
->
GetLibraryName
())
>
0
)
{
fout
<<
"ME = "
<<
this
->
GetLibraryName
()
<<
"
\n\n
"
;
fout
<<
"BUILD_LIB_FILE = lib${ME}${ITK_LIB_EXT}
\n\n
"
;
}
for
(
int
i
=
0
;
i
<
m_MakeVerbatim
.
size
();
i
++
)
{
fout
<<
m_MakeVerbatim
[
i
]
<<
"
\n
"
;
...
...
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