CMakeLists.txt 296 B

123456789101112131415
  1. #
  2. # peTI-NESulator CMake
  3. #
  4. # Created by Manoël Trapier.
  5. # Copyright (c) 2002-2019 986-Studio.
  6. #
  7. file(GLOB plugins_list plugins/*.c)
  8. if (COVERALLS)
  9. set(COVERAGE_SRCS src/pluginsmanager/manager.c ${COVERAGE_SRCS} PARENT_SCOPE)
  10. endif()
  11. add_library(pluginsmanager manager.c ${plugins_list})