mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 05:40:54 -06:00
11 lines
206 B
CMake
11 lines
206 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
|
|
project(glib C)
|
|
|
|
find_package(GTK2 COMPONENTS gtk REQUIRED)
|
|
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
|
|
add_executable(glib WIN32 main.c)
|
|
target_link_libraries(glib GTK2::glib)
|