diff options
author | Pierre Ossman <ossman@cendio.se> | 2011-03-08 16:32:49 +0000 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2011-03-08 16:32:49 +0000 |
commit | 8f64ef73b3b39191c66b202eea4299c36741ed15 (patch) | |
tree | 1972612dc0ce67c26950c14010972e3a76b77af6 /unix/vncconfig | |
parent | 7c1d6ced0ee6dee94404816e8c968f90eebd9086 (diff) | |
download | tigervnc-8f64ef73b3b39191c66b202eea4299c36741ed15.tar.gz tigervnc-8f64ef73b3b39191c66b202eea4299c36741ed15.zip |
Get the Unix stuff to build using CMake. Based on a patch by Henrik Andersson.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4336 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'unix/vncconfig')
-rw-r--r-- | unix/vncconfig/CMakeLists.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/unix/vncconfig/CMakeLists.txt b/unix/vncconfig/CMakeLists.txt new file mode 100644 index 00000000..55704130 --- /dev/null +++ b/unix/vncconfig/CMakeLists.txt @@ -0,0 +1,12 @@ +include_directories(${X11_INCLUDE_DIR}) + +include_directories(${CMAKE_SOURCE_DIR}/common) +include_directories(${CMAKE_SOURCE_DIR}/unix/tx) + +add_executable(vncconfig + buildtime.c + vncExt.c + vncconfig.cxx + QueryConnectDialog.cxx) + +target_link_libraries(vncconfig tx rfb network rdr ${X11_LIBRARIES}) |