Various compilation scripts & patches for Linux programs.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
267 B

  1. cmake_minimum_required(VERSION 3.0.0)
  2. project(xclipshow)
  3. find_package(Qt5Widgets)
  4. set(CMAKE_AUTOMOC ON)
  5. set(CMAKE_INCLUDE_CURRENT_DIR ON)
  6. set(SRC
  7. xclipshow.cpp)
  8. add_definitions(-std=c++11)
  9. add_executable(xclipshow ${SRC})
  10. qt5_use_modules(xclipshow Widgets Core)