mirror of
https://github.com/dingusdev/dingusppc.git
synced 2024-11-18 22:05:51 +00:00
9 lines
310 B
CMake
9 lines
310 B
CMake
include_directories("${PROJECT_SOURCE_DIR}"
|
|
"${PROJECT_SOURCE_DIR}/thirdparty/loguru/"
|
|
"${PROJECT_SOURCE_DIR}/thirdparty/SDL2/")
|
|
|
|
file(GLOB SOURCES "${CMAKE_CURRENT_SOURCE_DIR}/*.cpp")
|
|
|
|
add_library(devices OBJECT ${SOURCES})
|
|
target_link_libraries(devices PRIVATE cubeb)
|