Skip to content

Commit

Permalink
Clipboard library. Specified "C" language in CMakeLists.txt, so CMake…
Browse files Browse the repository at this point in the history
… doesn't look for a C++ compiler. Noted dependencies in build instructions.
  • Loading branch information
semiprime committed Sep 15, 2023
1 parent dcf522d commit 0c64e7e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion csrc/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
5 changes: 5 additions & 0 deletions docs/Development.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0c64e7e

Please sign in to comment.