commit | d0b64c92078bd48ff5f7f6bf847b2fb81a0fb1f4 | [log] [tgz] |
---|---|---|
author | DRC <dcommander@users.sourceforge.net> | Tue Jun 07 04:07:41 2011 +0000 |
committer | DRC <dcommander@users.sourceforge.net> | Tue Jun 07 04:07:41 2011 +0000 |
tree | ffef6087f425009ece35cb9048eb72b9b89df4f5 | |
parent | 17331b957009560b60218f8a18b114ab9400dd77 [diff] [blame] |
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 176c236..b5415ec 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt
@@ -278,6 +278,8 @@ endif() if(BUILD_NEW_VNCVIEWER) - add_subdirectory(po) + if(ENABLE_NLS) + add_subdirectory(po) + endif() add_subdirectory(vncviewer) endif()