pbsplash/CMakeLists.txt
Caleb Connolly 461937443c
first commit!
very messy implementation of a simple FB splash for postmarketOS.
2021-10-04 01:52:24 +01:00

13 lines
237 B
CMake

cmake_minimum_required(VERSION 3.10)
# set the project name
project(pbsplash)
# add the executable
add_executable(pbsplash pbsplash.c)
include_directories(tfblib/include)
add_subdirectory(tfblib)
target_link_libraries(pbsplash tfb)