Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/Remmina.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorDmitry Kubatkin <maelnor@gmail.com>2012-02-22 18:14:11 +0400
committerDmitry Kubatkin <maelnor@gmail.com>2012-02-22 18:14:11 +0400
commit539e67efcfcbca3cd26ad697092a2434a477e5ae (patch)
tree7af486eec0969c2e51dbb39d4be03245052ea99f /cmake
parent853ee9b3c589851d544330068ed01e047e94a0ae (diff)
FreeRDP moved from kbd to locale
Diffstat (limited to 'cmake')
-rw-r--r--cmake/FindFREERDP.cmake6
1 files changed, 3 insertions, 3 deletions
diff --git a/cmake/FindFREERDP.cmake b/cmake/FindFREERDP.cmake
index f7140b845..0e7322bb3 100644
--- a/cmake/FindFREERDP.cmake
+++ b/cmake/FindFREERDP.cmake
@@ -14,7 +14,7 @@
#
# 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,
+# Foundation, Inc., 59 Temple Place, Suite 330,
# Boston, MA 02111-1307, USA.
find_package(PkgConfig)
@@ -30,7 +30,7 @@ find_library(FREERDP_LIBRARY NAMES freerdp-core
find_library(FREERDP_GDI_LIBRARY NAMES freerdp-gdi
HINTS ${PC_FREERDP_LIBDIR} ${PC_FREERDP_LIBRARY_DIRS})
-find_library(FREERDP_KBD_LIBRARY NAMES freerdp-kbd
+find_library(FREERDP_LOCALE_LIBRARY NAMES freerdp-locale
HINTS ${PC_FREERDP_LIBDIR} ${PC_FREERDP_LIBRARY_DIRS})
find_library(FREERDP_RAIL_LIBRARY NAMES freerdp-rail
@@ -46,7 +46,7 @@ include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(FREERDP DEFAULT_MSG FREERDP_LIBRARY FREERDP_INCLUDE_DIR)
-set(FREERDP_LIBRARIES ${FREERDP_LIBRARY} ${FREERDP_GDI_LIBRARY} ${FREERDP_KBD_LIBRARY} ${FREERDP_RAIL_LIBRARY} ${FREERDP_CODEC_LIBRARY} ${FREERDP_CHANNELS_LIBRARY})
+set(FREERDP_LIBRARIES ${FREERDP_LIBRARY} ${FREERDP_GDI_LIBRARY} ${FREERDP_LOCALE_LIBRARY} ${FREERDP_RAIL_LIBRARY} ${FREERDP_CODEC_LIBRARY} ${FREERDP_CHANNELS_LIBRARY})
set(FREERDP_INCLUDE_DIRS ${FREERDP_INCLUDE_DIR})
mark_as_advanced(FREERDP_INCLUDE_DIR FREERDP_LIBRARY)