From 0c64e7e3135d2449e6dcb8291514cbf019c0a74e Mon Sep 17 00:00:00 2001 From: Matt Lewis Date: Fri, 15 Sep 2023 22:42:55 +0200 Subject: [PATCH] Clipboard library. Specified "C" language in CMakeLists.txt, so CMake doesn't look for a C++ compiler. Noted dependencies in build instructions. --- csrc/CMakeLists.txt | 2 +- docs/Development.md | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/csrc/CMakeLists.txt b/csrc/CMakeLists.txt index 6f5a71c..5982e04 100644 --- a/csrc/CMakeLists.txt +++ b/csrc/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.0) -project(pygenda_clipboard) +project(pygenda_clipboard C) find_package(PkgConfig REQUIRED) pkg_check_modules(GTK REQUIRED gtk+-3.0) diff --git a/docs/Development.md b/docs/Development.md index 630724c..b82311d 100644 --- a/docs/Development.md +++ b/docs/Development.md @@ -28,6 +28,11 @@ location in the source tree: make make cp +Build dependencies are: a C compiler, CMake (or you could build from +the command-line), and GTK3 development files (if these are not already +installed, it's probably package `libgtk-3-dev` or `gtk+3.0-dev` in your +package manager). + Translating strings ------------------- If you are adding a new language, copy an existing complete .po as a