You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
331 B
15 lines
331 B
include_directories(
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../
|
|
)
|
|
add_subdirectory(base)
|
|
add_subdirectory(utils)
|
|
add_subdirectory(matrix)
|
|
|
|
include_directories(
|
|
${CMAKE_CURRENT_SOURCE_DIR}/frontend
|
|
)
|
|
add_subdirectory(frontend)
|
|
|
|
add_library(common INTERFACE)
|
|
add_definitions(common base utils kaldi-matrix frontend) |