- Update some headers that was incorrect - Reformat the code in all files to match the same code style - Removal of unwanted/unneeded files
17 lines
315 B
CMake
17 lines
315 B
CMake
#
|
|
# peTI-NESulator CMake
|
|
#
|
|
# Created by Manoël TRAPIER.
|
|
# Copyright (c) 2003-2018 986-Studio. All rights reserved.
|
|
#
|
|
# $LastChangedDate$
|
|
# $Author$
|
|
# $HeadURL$
|
|
# $Revision$
|
|
|
|
if (COVERALLS)
|
|
set(COVERAGE_SRCS src/memorymanager/memory.c ${COVERAGE_SRCS} PARENT_SCOPE)
|
|
endif()
|
|
|
|
add_library(memorymanager memory.c)
|