mgba/CMakeLists.txt

70 lines
2.6 KiB
CMake
Raw Normal View History

2013-04-03 22:12:15 -07:00
cmake_minimum_required(VERSION 2.6)
project(GBAc)
2013-09-22 12:05:31 -07:00
set(BINARY_NAME gbac CACHE INTERNAL "Name of output binaries")
2014-01-31 01:01:04 -08:00
set(CMAKE_C_FLAGS_DEBUG "-g -Wall -Wextra --std=gnu99")
set(CMAKE_C_FLAGS_RELEASE "-O3 -Wall -Wextra --std=gnu99")
2014-02-01 01:14:41 -08:00
set(USE_CLI_DEBUGGER ON CACHE BOOL "Whether or not to enable the CLI-mode ARM debugger")
2014-02-01 03:05:10 -08:00
set(USE_GDB_STUB ON CACHE BOOL "Whether or not to enable the GDB stub ARM debugger")
2014-01-28 06:53:38 -08:00
set(BUILD_QT ON CACHE BOOL "Build Qt frontend")
set(BUILD_SDL ON CACHE BOOL "Build SDL frontend")
set(BUILD_PERF ON CACHE BOOL "Build performance profiling tool")
2013-04-14 13:04:24 -07:00
file(GLOB ARM_SRC ${CMAKE_SOURCE_DIR}/src/arm/*.c)
file(GLOB GBA_SRC ${CMAKE_SOURCE_DIR}/src/gba/*.c)
file(GLOB UTIL_SRC ${CMAKE_SOURCE_DIR}/src/util/*.[cS])
file(GLOB RENDERER_SRC ${CMAKE_SOURCE_DIR}/src/gba/renderers/video-software.c)
2014-01-31 00:29:27 -08:00
source_group("ARM core" FILES ${ARM_SRC})
source_group("GBA board" FILES ${GBA_SRC} ${RENDERER_SRC})
source_group("Utilities" FILES ${UTIL_SRC})
2013-04-14 13:04:24 -07:00
include_directories(${CMAKE_SOURCE_DIR}/src/arm)
include_directories(${CMAKE_SOURCE_DIR}/src/gba)
include_directories(${CMAKE_SOURCE_DIR}/src/debugger)
include_directories(${CMAKE_SOURCE_DIR}/src/util)
2013-04-20 20:29:53 -07:00
if(WIN32)
add_definitions(-D_WIN32_WINNT=0x0600)
file(GLOB OS_SRC ${CMAKE_SOURCE_DIR}/src/platform/windows/*.c)
2014-01-31 00:29:27 -08:00
source_group("Windows-specific code" FILES ${OS_SRC})
else()
add_definitions(-DUSE_PTHREADS)
2014-01-31 01:13:51 -08:00
set(OS_LIB "${OS_LIB};pthread")
file(GLOB OS_SRC ${CMAKE_SOURCE_DIR}/src/platform/posix/*.c)
2014-01-31 00:29:27 -08:00
source_group("POSIX-specific code" FILES ${OS_SRC})
endif()
2014-01-23 20:57:04 -08:00
2014-02-01 01:14:41 -08:00
set(DEBUGGER_SRC "${CMAKE_SOURCE_DIR}/src/debugger/debugger.c;${CMAKE_SOURCE_DIR}/src/debugger/memory-debugger.c")
if(USE_CLI_DEBUGGER)
set(DEBUGGER_SRC "${DEBUGGER_SRC};${CMAKE_SOURCE_DIR}/src/debugger/cli-debugger.c")
set(DEBUGGER_LIB "edit")
else()
set(DEBUGGER_LIB "")
endif()
2014-02-01 03:05:10 -08:00
if(USE_GDB_STUB)
2014-02-01 20:48:00 -08:00
add_definitions(-DUSE_GDB_STUB)
2014-02-01 03:05:10 -08:00
set(DEBUGGER_SRC "${DEBUGGER_SRC};${CMAKE_SOURCE_DIR}/src/debugger/gdb-stub.c")
endif()
2014-02-01 01:14:41 -08:00
source_group("ARM debugger" FILES ${DEBUGGER_SRC})
add_library(${BINARY_NAME} SHARED ${ARM_SRC} ${GBA_SRC} ${DEBUGGER_SRC} ${RENDERER_SRC} ${UTIL_SRC} ${OS_SRC})
target_link_libraries(${BINARY_NAME} m ${DEBUGGER_LIB} ${OS_LIB})
if(BUILD_SDL)
2014-02-03 22:28:28 -08:00
add_definitions(-DBUILD_SDL)
2014-01-31 01:01:44 -08:00
add_subdirectory(${CMAKE_SOURCE_DIR}/src/platform/sdl ${CMAKE_BINARY_DIR}/sdl)
endif()
2013-04-20 20:29:53 -07:00
2013-10-27 05:15:42 -07:00
if(BUILD_PERF)
set(PERF_SRC ${CMAKE_SOURCE_DIR}/src/platform/perf-main.c)
2014-01-16 00:32:51 -08:00
if(UNIX AND NOT APPLE)
2014-01-31 01:13:51 -08:00
set(PERF_LIB "${PERF_LIB};rt")
2014-01-16 00:32:51 -08:00
endif()
2013-10-27 05:15:42 -07:00
add_executable(${BINARY_NAME}-perf ${PERF_SRC})
2014-01-31 01:13:51 -08:00
target_link_libraries(${BINARY_NAME}-perf ${BINARY_NAME} ${PERF_LIB})
endif()
2014-01-28 06:53:38 -08:00
if(BUILD_QT)
2014-01-31 01:04:13 -08:00
add_subdirectory(${CMAKE_SOURCE_DIR}/src/platform/qt ${CMAKE_BINARY_DIR}/qt)
2014-01-28 06:53:38 -08:00
endif()