Re-organized repo for upcoming v1.5.0 extension management changes

This commit is contained in:
2023-06-27 14:49:03 -04:00
parent fb267085eb
commit ac035db597
9 changed files with 513 additions and 13 deletions
@@ -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})