mirror of
https://git.sr.ht/~calebccff/pbsplash
synced 2026-01-12 20:48:40 -09:00
14 lines
237 B
Text
14 lines
237 B
Text
|
|
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)
|