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
a9131732
Commit
a9131732
authored
Dec 01, 2014
by
Ghislain MARY
Browse files
Generate .lib files for AMR codec libraries on Windows.
parent
efa68a54
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
53 additions
and
0 deletions
+53
-0
builders/opencoreamr/postinstall.cmake
builders/opencoreamr/postinstall.cmake
+28
-0
builders/voamrwbenc/postinstall.cmake
builders/voamrwbenc/postinstall.cmake
+25
-0
No files found.
builders/opencoreamr/postinstall.cmake
0 → 100644
View file @
a9131732
############################################################################
# postinstall.cmake
# Copyright (C) 2014 Belledonne Communications, Grenoble France
#
############################################################################
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
############################################################################
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-amrwb.dll.a
)
execute_process
(
COMMAND
"
${
CMAKE_COMMAND
}
"
"-E"
"copy"
"
${
INSTALL_PREFIX
}
/lib/libopencore-amrwb.dll.a"
"
${
INSTALL_PREFIX
}
/lib/opencore-amrwb.lib"
)
endif
()
builders/voamrwbenc/postinstall.cmake
0 → 100644
View file @
a9131732
############################################################################
# postinstall.cmake
# Copyright (C) 2014 Belledonne Communications, Grenoble France
#
############################################################################
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
############################################################################
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
()
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