You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
269 B
CMake

# Set sources
set(SRC main.cpp)
include(FindPkgConfig)
pkg_check_modules(X11 x11 REQUIRED)
include_directories(${X11_INCLUDE_DIRS})
link_libraries(${X11_LDFLAGS})
add_executable(fala_windowid ${SRC})
# Install
install(PROGRAMS fala_windowid DESTINATION /usr/bin/)