diff options
author | Sergey Bugaev <bugaevc@serenityos.org> | 2020-05-06 18:40:06 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-05-14 20:15:18 +0200 |
commit | 450a2a0f9ce2443bc06445ee018c9860d8cd5fc8 (patch) | |
tree | c124a612ef259b764855af5e33c39e0d09ad4df2 /Applications/FontEditor | |
parent | 49727ffee424d8c0038ce18b91b0bf0ff33b1a4d (diff) | |
download | serenity-450a2a0f9ce2443bc06445ee018c9860d8cd5fc8.zip |
Build: Switch to CMake :^)
Closes https://github.com/SerenityOS/serenity/issues/2080
Diffstat (limited to 'Applications/FontEditor')
-rw-r--r-- | Applications/FontEditor/CMakeLists.txt | 11 | ||||
-rw-r--r-- | Applications/FontEditor/Makefile | 11 |
2 files changed, 11 insertions, 11 deletions
diff --git a/Applications/FontEditor/CMakeLists.txt b/Applications/FontEditor/CMakeLists.txt new file mode 100644 index 0000000000..0c39433507 --- /dev/null +++ b/Applications/FontEditor/CMakeLists.txt @@ -0,0 +1,11 @@ +include_directories(${CMAKE_CURRENT_BINARY_DIR}) + +set(SOURCES + FontEditor.cpp + GlyphEditorWidget.cpp + GlyphMapWidget.cpp + main.cpp +) + +serenity_bin(FontEditor) +target_link_libraries(FontEditor LibGUI LibGfx) diff --git a/Applications/FontEditor/Makefile b/Applications/FontEditor/Makefile deleted file mode 100644 index 20b620b202..0000000000 --- a/Applications/FontEditor/Makefile +++ /dev/null @@ -1,11 +0,0 @@ -OBJS = \ - FontEditor.o \ - GlyphMapWidget.o \ - GlyphEditorWidget.o \ - main.o - -PROGRAM = FontEditor - -LIB_DEPS = GUI Gfx Core IPC - -include ../../Makefile.common |