CMakeLists.txt 406 B

123456789101112131415161718
  1. #
  2. # peTI-NESulator CMake
  3. #
  4. # Created by Manoel TRAPIER.
  5. # Copyright (c) 2003-2018 986-Studio. All rights reserved.
  6. #
  7. # $LastChangedDate$
  8. # $Author$
  9. # $HeadURL$
  10. # $Revision$
  11. file(GLOB mappers_list mappers/*.c)
  12. if (COVERALLS)
  13. set(COVERAGE_SRCS src/mappersmanager/manager.c src/mappersmanager/utils.c ${COVERAGE_SRCS} PARENT_SCOPE)
  14. endif()
  15. add_library(mappermanager utils.c manager.c ${mappers_list} )