aboutsummaryrefslogtreecommitdiffstats
path: root/unix/tx
diff options
context:
space:
mode:
Diffstat (limited to 'unix/tx')
-rw-r--r--unix/tx/CMakeLists.txt13
1 files changed, 13 insertions, 0 deletions
diff --git a/unix/tx/CMakeLists.txt b/unix/tx/CMakeLists.txt
new file mode 100644
index 00000000..ab46f03c
--- /dev/null
+++ b/unix/tx/CMakeLists.txt
@@ -0,0 +1,13 @@
+include_directories(${X11_INCLUDE_DIR})
+
+include_directories(${CMAKE_SOURCE_DIR}/common)
+include_directories(${CMAKE_SOURCE_DIR}/common/rfb)
+
+add_library(tx STATIC
+ TXWindow.cxx
+ TXScrollbar.cxx
+ TXViewport.cxx
+ TXImage.cxx
+ TXMenu.cxx)
+
+target_link_libraries(tx ${X11_LIBRARIES})