CMakeLists.txt 299 Bytes
Newer Older
lyz's avatar
lyz committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
add_executable(test_ast test_ast.cpp)
add_executable(test_logging test_logging.cpp)
target_link_libraries(test_ast syntax common)
target_link_libraries(test_logging common)

install(
    TARGETS test_logging
    RUNTIME DESTINATION bin
)

install(
    TARGETS test_ast
    RUNTIME DESTINATION bin
)