cmake/Tests/FindGTK2/pangoft2/CMakeLists.txt

11 lines
223 B
CMake
Raw Normal View History

2024-11-11 15:18:55 +01:00
cmake_minimum_required(VERSION 3.10)
2014-08-03 19:52:23 +02:00
project(pangoft2 C)
find_package(GTK2 COMPONENTS gtk REQUIRED)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
add_executable(pangoft2 WIN32 main.c)
target_link_libraries(pangoft2 GTK2::pangoft2)