Skip to content

Instantly share code, notes, and snippets.

@hbirchtree
hbirchtree / CMakeLists.txt
Last active December 11, 2021 09:08 — forked from fracek/CMakeLists.txt
CMake, GTK+ 3 and AppImage
# Set the name and the supported language of the project
PROJECT(hello-world C)
# Set the minimum version of cmake required to build this project
CMAKE_MINIMUM_REQUIRED(VERSION 3.0)
### We need this in order to find CMake modules located in this directory
set ( CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_SOURCE_DIR} )
include ( LinuxAppImageBuild )