1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 14:28:12 +00:00
serenity/Userland/Applications/Calculator/CMakeLists.txt
Lucas CHOLLET e3b22c395d Calculator: Add a "Custom" entry to the rounding menu
This entry pop a dialog to ask the user to enter a value. The Calculator
will automatically put itself in this mode if you enter a number with
more digits in the fractional part than the actual maximum length.
2022-10-03 15:12:47 -04:00

18 lines
366 B
CMake

serenity_component(
Calculator
RECOMMENDED
TARGETS Calculator
)
compile_gml(CalculatorWindow.gml CalculatorGML.h calculator_gml)
set(SOURCES
main.cpp
Calculator.cpp
CalculatorWidget.cpp
RoundingDialog.cpp
Keypad.cpp
CalculatorGML.h
)
serenity_app(Calculator ICON app-calculator)
target_link_libraries(Calculator LibGUI LibMain)