CMakeLists.txt 179 Bytes
Newer Older
lyz's avatar
lyz committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
add_executable(
    cminusfc
    main.cpp
)

target_link_libraries(
    cminusfc
    common
    syntax
    stdc++fs
)

install(
    TARGETS cminusfc
    RUNTIME DESTINATION bin
)