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