21 lines
747 B
CMake
21 lines
747 B
CMake
add_executable(dcode_fcode common.hh dcode_fcode.cc)
|
|
target_link_libraries(dcode_fcode PRIVATE args)
|
|
|
|
add_executable(fcode_bidx common.hh fcode_bidx.cc)
|
|
target_link_libraries(fcode_bidx PRIVATE args)
|
|
|
|
add_executable(bidx_stego common.hh bidx_stego.cc)
|
|
target_link_libraries(bidx_stego PRIVATE args minimp4 openh264)
|
|
|
|
add_executable(stego_fprob common.hh stego_fprob.cc)
|
|
target_link_libraries(stego_fprob PRIVATE args minimp4 openh264)
|
|
|
|
add_executable(fprob_fcprob common.hh fprob_fcprob.cc)
|
|
target_link_libraries(fprob_fcprob PRIVATE args)
|
|
|
|
add_executable(fcprob_fcode common.hh fcprob_fcode.cc)
|
|
target_link_libraries(fcprob_fcode PRIVATE args)
|
|
|
|
add_executable(fcode_dcode common.hh fcode_dcode.cc)
|
|
target_link_libraries(fcode_dcode PRIVATE args)
|