8 lines
185 B
CMake
8 lines
185 B
CMake
cmake_minimum_required(VERSION 3.16)
|
|
|
|
project(mp4istrunc)
|
|
|
|
add_executable(mp4istrunc main.c)
|
|
|
|
install(TARGETS mp4istrunc DESTINATION bin)
|
|
install(FILES mp4istrunc.h DESTINATION include) |