5 lines
191 B
CMake
5 lines
191 B
CMake
|
|
file(GLOB_RECURSE common_sources *.c *.h include/ivy/*.h)
|
||
|
|
|
||
|
|
add_library(ivy-common SHARED ${common_sources})
|
||
|
|
target_include_directories(ivy-common PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/include/)
|