blob: 981d7c92cb7abd6e4d88704b1ee03e5f4d5a1514 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
set(inc "inc")
if(PS1_BUILD)
set(inc ${inc} "ps1/inc")
elseif(SDL1_2_BUILD)
set(inc ${inc} "sdl-1.2/inc")
elseif(ESP32_BUILD)
set(inc ${inc} "esp32/inc")
endif()
add_library(container "src/container.c")
target_include_directories(container PUBLIC ${inc})
target_link_libraries(container PUBLIC gfx sfx)
|