chore: got build working on mac (kind of)

This commit is contained in:
2025-12-18 01:29:32 +03:00
parent 57c3c55a94
commit 1a1747a472
8 changed files with 160 additions and 104 deletions

View File

@@ -15,6 +15,9 @@ set(GUI_SOURCES
file_browser.cpp
${CMAKE_SOURCE_DIR}/lib/color_text_edit/TextEditor.cpp
)
if(APPLE)
list(APPEND GUI_SOURCES file_browser_macos.mm)
endif()
add_executable(clrsync_gui ${GUI_SOURCES})