mirror of
https://github.com/RGBCube/serenity
synced 2025-05-18 21:35:06 +00:00

By linking with LibMain, your program no longer needs to provide main(). Instead, execution begins in this function: ErrorOr<int> serenity_main(Main::Arguments); This allows programs that link with LibMain to use TRY() already in their entry function, without having to do manual ErrorOr unwrapping. This is very experimental, but it seems like a nice idea so let's try it out. :^)
6 lines
91 B
CMake
6 lines
91 B
CMake
set(SOURCES
|
|
Main.cpp
|
|
)
|
|
|
|
serenity_lib(LibMain main)
|
|
target_link_libraries(LibMain LibC)
|