-
Notifications
You must be signed in to change notification settings - Fork 22
/
CMakeLists.txt
45 lines (34 loc) · 1.71 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
cmake_minimum_required(VERSION 3.16)
project(radpro)
set(CMAKE_C_STANDARD 99)
FILE(GLOB sources platform.io/src/*.c)
FILE(GLOB sdl_sources platform.io/src/sdl/*.c)
FILE(GLOB mcurenderer_sources platform.io/lib/mcu-renderer/*.c)
FILE(GLOB mcumax_sources platform.io/lib/mcu-max/*.c)
find_package(SDL2 CONFIG REQUIRED)
find_path(SERCOMM_INCLUDE_DIR sercomm/sercomm.h)
find_library(SERCOMM_LIB sercomm.lib)
include_directories(platform.io/lib/mcu-renderer platform.io/lib/mcu-max ${SERCOMM_INCLUDE_DIR})
link_libraries($<TARGET_NAME_IF_EXISTS:SDL2::SDL2main>
$<IF:$<TARGET_EXISTS:SDL2::SDL2>,SDL2::SDL2,SDL2::SDL2-static>
${SERCOMM_LIB}
)
add_definitions(-D SIMULATOR)
add_definitions(-D SIMULATE_PULSES)
add_definitions(-D TUBE_HV_PWM)
add_definitions(-D BATTERY_REMOVABLE)
add_definitions(-D KEYBOARD_5KEYS)
add_definitions(-D PULSE_LED)
# add_definitions(-D ALERT_LED)
add_definitions(-D VIBRATOR)
# add_definitions(-D DATA_MODE)
add_definitions(-D GAME)
add_definitions(-D MCURENDERER_SDL)
add_definitions(-D _CRT_SECURE_NO_WARNINGS)
add_link_options(/NODEFAULTLIB:libcmt /NODEFAULTLIB:libcmtd)
add_executable(radpro-monochrome ${sources} ${display_sources} ${sdl_sources} ${mcurenderer_sources} ${mcumax_sources})
target_compile_definitions(radpro-monochrome PUBLIC DISPLAY_128X64 DISPLAY_MONOCHROME)
add_executable(radpro-color-landscape ${sources} ${display_sources} ${sdl_sources} ${mcurenderer_sources} ${mcumax_sources})
target_compile_definitions(radpro-color-landscape PUBLIC DISPLAY_320X240 DISPLAY_COLOR)
add_executable(radpro-color-portrait ${sources} ${display_sources} ${sdl_sources} ${mcurenderer_sources} ${mcumax_sources})
target_compile_definitions(radpro-color-portrait PUBLIC DISPLAY_240X320 DISPLAY_COLOR)