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