mirror of
https://git.sr.ht/~calebccff/pbsplash
synced 2026-01-13 04:58:39 -09:00
13 lines
237 B
CMake
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)
|