21 lines
735 B
CMake
21 lines
735 B
CMake
add_executable(dcode_feat common.hh dcode_feat.cc)
|
|
target_link_libraries(dcode_feat PRIVATE args)
|
|
|
|
add_executable(feat_block common.hh feat_block.cc)
|
|
target_link_libraries(feat_block PRIVATE args)
|
|
|
|
add_executable(block_stego common.hh block_stego.cc)
|
|
target_link_libraries(block_stego PRIVATE args minimp4 openh264)
|
|
|
|
add_executable(stego_aprob common.hh stego_aprob.cc)
|
|
target_link_libraries(stego_aprob PRIVATE args minimp4 openh264)
|
|
|
|
add_executable(aprob_fprob common.hh aprob_fprob.cc)
|
|
target_link_libraries(aprob_fprob PRIVATE args)
|
|
|
|
add_executable(fprob_feat common.hh fprob_feat.cc)
|
|
target_link_libraries(fprob_feat PRIVATE args)
|
|
|
|
add_executable(feat_dcode common.hh feat_dcode.cc)
|
|
target_link_libraries(feat_dcode PRIVATE args)
|