Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
linphone-cmake-builder
Commits
41d643bd
Commit
41d643bd
authored
Dec 02, 2014
by
Ghislain MARY
Browse files
Fix postinstall step of opencoreamr and voamrwbenc on Windows if building statically.
parent
44558700
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
0 deletions
+9
-0
builders/opencoreamr/postinstall.cmake
builders/opencoreamr/postinstall.cmake
+6
-0
builders/voamrwbenc/postinstall.cmake
builders/voamrwbenc/postinstall.cmake
+3
-0
No files found.
builders/opencoreamr/postinstall.cmake
View file @
41d643bd
...
...
@@ -23,6 +23,12 @@
if
(
EXISTS
${
INSTALL_PREFIX
}
/lib/libopencore-amrnb.dll.a
)
execute_process
(
COMMAND
"
${
CMAKE_COMMAND
}
"
"-E"
"copy"
"
${
INSTALL_PREFIX
}
/lib/libopencore-amrnb.dll.a"
"
${
INSTALL_PREFIX
}
/lib/opencore-amrnb.lib"
)
endif
()
if
(
EXISTS
${
INSTALL_PREFIX
}
/lib/libopencore-amrnb.a
)
execute_process
(
COMMAND
"
${
CMAKE_COMMAND
}
"
"-E"
"copy"
"
${
INSTALL_PREFIX
}
/lib/libopencore-amrnb.a"
"
${
INSTALL_PREFIX
}
/lib/opencore-amrnb.lib"
)
endif
()
if
(
EXISTS
${
INSTALL_PREFIX
}
/lib/libopencore-amrwb.dll.a
)
execute_process
(
COMMAND
"
${
CMAKE_COMMAND
}
"
"-E"
"copy"
"
${
INSTALL_PREFIX
}
/lib/libopencore-amrwb.dll.a"
"
${
INSTALL_PREFIX
}
/lib/opencore-amrwb.lib"
)
endif
()
if
(
EXISTS
${
INSTALL_PREFIX
}
/lib/libopencore-amrwb.a
)
execute_process
(
COMMAND
"
${
CMAKE_COMMAND
}
"
"-E"
"copy"
"
${
INSTALL_PREFIX
}
/lib/libopencore-amrwb.a"
"
${
INSTALL_PREFIX
}
/lib/opencore-amrwb.lib"
)
endif
()
builders/voamrwbenc/postinstall.cmake
View file @
41d643bd
...
...
@@ -23,3 +23,6 @@
if
(
EXISTS
${
INSTALL_PREFIX
}
/lib/libvo-amrwbenc.dll.a
)
execute_process
(
COMMAND
"
${
CMAKE_COMMAND
}
"
"-E"
"copy"
"
${
INSTALL_PREFIX
}
/lib/libvo-amrwbenc.dll.a"
"
${
INSTALL_PREFIX
}
/lib/vo-amrwbenc.lib"
)
endif
()
if
(
EXISTS
${
INSTALL_PREFIX
}
/lib/libvo-amrwbenc.a
)
execute_process
(
COMMAND
"
${
CMAKE_COMMAND
}
"
"-E"
"copy"
"
${
INSTALL_PREFIX
}
/lib/libvo-amrwbenc.a"
"
${
INSTALL_PREFIX
}
/lib/vo-amrwbenc.lib"
)
endif
()
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