mirror of
https://github.com/reactos/CMake.git
synced 2024-12-13 14:27:23 +00:00
11 lines
232 B
CMake
11 lines
232 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
|
|
project(pangocairo C)
|
|
|
|
find_package(GTK2 COMPONENTS gtk REQUIRED)
|
|
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
|
|
add_executable(pangocairo WIN32 main.c)
|
|
target_link_libraries(pangocairo GTK2::pangocairo m)
|