From: DRC Date: Tue, 7 Jun 2011 04:07:41 +0000 (+0000) Subject: Do not include the po/ subdirectory unless NLS is enabled. X-Git-Tag: v1.1.90~311 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=d0b64c92078bd48ff5f7f6bf847b2fb81a0fb1f4;p=tigervnc.git Do not include the po/ subdirectory unless NLS is enabled. git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4469 3789f03b-4d11-0410-bbf8-ca57d06f2519 --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 176c236b..b5415ec0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -278,6 +278,8 @@ else() endif() if(BUILD_NEW_VNCVIEWER) - add_subdirectory(po) + if(ENABLE_NLS) + add_subdirectory(po) + endif() add_subdirectory(vncviewer) endif()