summaryrefslogtreecommitdiffstats
path: root/Tests/FindGTK2/gmodule/CMakeLists.txt
blob: ae6f553623c939bcc6b53c2cdf500b67524fd4db (plain)
1
2
3
4
5
6
7
8
9
10
cmake_minimum_required(VERSION 3.10)

project(gmodule C)

find_package(GTK2 COMPONENTS gtk REQUIRED)

set(CMAKE_INCLUDE_CURRENT_DIR ON)

add_executable(gmodule WIN32 main.c)
target_link_libraries(gmodule GTK2::gmodule)