CMakeLists.txt 686 B

123456789101112131415161718192021222324
  1. # ====================================================================
  2. # programs;
  3. # --------------------------------------------------------------------
  4. add_executable(mdioblock mdioblock.c)
  5. add_executable(mdioblock2 mdioblock2.c)
  6. add_executable(mdiodump mdiodump.c)
  7. if (NOT WIN32)
  8. add_executable(mdiogen mdiogen.c)
  9. endif (NOT WIN32)
  10. # ====================================================================
  11. # dependencies;
  12. # --------------------------------------------------------------------
  13. target_link_libraries(mdioblock tools)
  14. target_link_libraries(mdioblock2 tools)
  15. target_link_libraries(mdiodump tools)
  16. if (NOT WIN32)
  17. target_link_libraries(mdiogen tools)
  18. endif (NOT WIN32)