libretro-dolphin/Externals/LZO/CMakeLists.txt
Lioncash 7de2d1c9d6
CMakeLists: Don't dump LZO's includes into the top-level directory
Instead, we add the includes to the LZO target's interface. That way
only libraries that link it in can see them.
2018-04-13 07:39:09 -04:00

9 lines
110 B
CMake

add_library(lzo2 STATIC
minilzo.c
)
target_include_directories(lzo2
PUBLIC
${CMAKE_CURRENT_SOURCE_DIR}
)