• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1add_executable(metaflac
2    main.c
3    operations.c
4    operations_shorthand_cuesheet.c
5    operations_shorthand_picture.c
6    operations_shorthand_seektable.c
7    operations_shorthand_streaminfo.c
8    operations_shorthand_vorbiscomment.c
9    options.c
10    usage.c
11    utils.c
12    $<$<BOOL:${WIN32}>:../../include/share/win_utf8_io.h>
13    $<$<BOOL:${WIN32}>:../share/win_utf8_io/win_utf8_io.c>)
14target_link_libraries(metaflac FLAC getopt utf8)
15
16install(TARGETS metaflac EXPORT targets
17    RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}")
18