password-pasture (GUI) - Initial commit

This commit is contained in:
2022-08-04 03:22:01 -04:00
parent 42ef63c0d9
commit dfb90ca294
5 changed files with 219 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
cmake_minimum_required(VERSION 3.23)
project(password_pasture C)
set(CMAKE_C_STANDARD 17)
find_package(PkgConfig REQUIRED)
pkg_check_modules(GTK4 REQUIRED gtk4)
include_directories(${GTK4_INCLUDE_DIRS})
link_directories(${GTK4_LIBRARY_DIRS})
add_definitions(${GTK4_CFLAGS_OTHER})
add_executable(password_pasture main.c)
target_link_libraries(password_pasture ${GTK4_LIBRARIES})