summaryrefslogtreecommitdiff
path: root/src/CMakeLists.txt
diff options
context:
space:
mode:
authorManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2025-03-07 17:43:03 +0100
committerManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2025-03-07 17:43:03 +0100
commit89f714cb4eac968c94925ee2e9629649033ef372 (patch)
tree04f2f61cda702e5f8c6ef8f18a906886204b3ba8 /src/CMakeLists.txt
parentd449a3d9bf3cf422a84db1c952b07be48d1591a8 (diff)
Remove platform-specific code from file cp936ext.h
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r--src/CMakeLists.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 1cb57df34..9c58ed958 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -524,9 +524,11 @@ if(FLTK_USE_X11)
if(NOT USE_XFT)
list(APPEND CFILES
xutf8/utf8Utils.c
- xutf8/utf8Wrap.c
xutf8/utf8Input.c
)
+ if(NOT APPLE)
+ list(APPEND CFILES xutf8/utf8Wrap.c)
+ endif(NOT APPLE)
endif(NOT USE_XFT)
endif(FLTK_USE_X11)