ffconv/examples/CMakeLists.txt

9 lines
249 B
CMake

project(ffConv)
add_executable(ffConv ffConv.cpp)
add_dependencies(ffConv ffcpp)
target_link_libraries(ffConv ffcpp)
project(ffPreview)
add_executable(ffPreview ffPreview.cpp)
add_dependencies(ffPreview ffcpp)
target_link_libraries(ffPreview ffcpp)