mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 13:57:57 -07:00
7de2d1c9d6
Instead, we add the includes to the LZO target's interface. That way only libraries that link it in can see them.
9 lines
110 B
CMake
9 lines
110 B
CMake
add_library(lzo2 STATIC
|
|
minilzo.c
|
|
)
|
|
|
|
target_include_directories(lzo2
|
|
PUBLIC
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
)
|