mirror of
https://github.com/reactos/CMake.git
synced 2024-12-21 03:00:59 +00:00
11 lines
210 B
CMake
11 lines
210 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
|
|
project(pango C)
|
|
|
|
find_package(GTK2 COMPONENTS gtk REQUIRED)
|
|
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
|
|
add_executable(pango WIN32 main.c)
|
|
target_link_libraries(pango GTK2::pango)
|