mirror of
https://github.com/corda/corda.git
synced 2025-01-04 04:04:27 +00:00
24 lines
421 B
CMake
24 lines
421 B
CMake
|
|
include_directories (${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
add_executable (avian_unittest
|
|
test-harness.cpp
|
|
|
|
codegen/assembler-test.cpp
|
|
codegen/registers-test.cpp
|
|
|
|
util/arg-parser-test.cpp
|
|
)
|
|
|
|
target_link_libraries (avian_unittest
|
|
avian_codegen
|
|
avian_codegen_x86
|
|
avian_system
|
|
avian_heap
|
|
avian_util
|
|
${PLATFORM_LIBS}
|
|
)
|
|
|
|
add_test(NAME avian_unittest COMMAND avian_unittest)
|
|
add_dependencies(check avian_unittest)
|