Newer
Older
minerva / Userland / Shell / CMakeLists.txt
@minerva minerva on 13 Jul 308 bytes Initial commit
minerva_component(
    Shell
    REQUIRED
    TARGETS Shell
)

if (ENABLE_FUZZERS)
    add_custom_target(Shell) # Stub target to placate minerva_component
else()
    set(SOURCES main.cpp)

    minerva_bin(Shell)
    target_link_libraries(Shell PRIVATE LibCore LibShell LibFileSystem LibLine LibMain)
endif()