summaryrefslogtreecommitdiffstats
path: root/src/ui/dialog
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-06-12 18:27:29 +0000
committerCampbell Barton <ideasman42@gmail.com>2011-06-12 18:27:29 +0000
commit0ddedab9c6185028661dcaaac9f6fbca4c9e93fc (patch)
treebbc7867e964a5b358b7b144df7c434941f7f06bf /src/ui/dialog
parentsupport python3.x for other i18n scripts (diff)
downloadinkscape-0ddedab9c6185028661dcaaac9f6fbca4c9e93fc.tar.gz
inkscape-0ddedab9c6185028661dcaaac9f6fbca4c9e93fc.zip
work in progress cmake commit:
- cmake now builds all files that automake does but does NOT link yet - inlcudes nasty hard coded paths and libs (will replace once linking works) (bzr r10272)
Diffstat (limited to 'src/ui/dialog')
-rw-r--r--src/ui/dialog/CMakeLists.txt93
1 files changed, 50 insertions, 43 deletions
diff --git a/src/ui/dialog/CMakeLists.txt b/src/ui/dialog/CMakeLists.txt
index 98c4a47bb..dbd34cec1 100644
--- a/src/ui/dialog/CMakeLists.txt
+++ b/src/ui/dialog/CMakeLists.txt
@@ -1,45 +1,52 @@
-IF(WIN32)
-SET(ui_dialog_WIN32_SRC
-filedialogimpl-win32.cpp
-)
-ELSEIF(WIN32)
- SET(ui_dialog_WIN32_SRC)
-ENDIF(WIN32)
-SET(ui_dialog_SRC
-aboutbox.cpp
-align-and-distribute.cpp
-color-item.cpp
-debug.cpp
-dialog.cpp
-dialog-manager.cpp
-dock-behavior.cpp
-document-metadata.cpp
-document-properties.cpp
-extension-editor.cpp
-eek-preview.cpp
-ege-paint-def.cpp
-filedialog.cpp
-filedialogimpl-gtkmm.cpp
-fill-and-stroke.cpp
-filter-effects-dialog.cpp
-find.cpp
-floating-behavior.cpp
-inkscape-preferences.cpp
-input.cpp
-livepatheffect-editor.cpp
-memory.cpp
-messages.cpp
-ocaldialogs.cpp
-print.cpp
-scriptdialog.cpp
-#session-player.cpp
-tile.cpp
-tracedialog.cpp
-transformation.cpp
-undo-history.cpp
-#whiteboard-connect.cpp
-#whiteboard-sharewithchat.cpp
-#whiteboard-sharewithuser.cpp
-${ui_dialog_WIN32_SRC}
+set(ui_dialog_SRC
+ aboutbox.cpp
+ align-and-distribute.cpp
+ calligraphic-profile-rename.cpp
+ color-item.cpp
+ debug.cpp
+ desktop-tracker.cpp
+ dialog-manager.cpp
+ dialog.cpp
+ dock-behavior.cpp
+ document-metadata.cpp
+ document-properties.cpp
+ extension-editor.cpp
+ extensions.cpp
+ filedialog.cpp
+ filedialogimpl-gtkmm.cpp
+ fill-and-stroke.cpp
+ filter-effects-dialog.cpp
+ find.cpp
+ floating-behavior.cpp
+ glyphs.cpp
+ guides.cpp
+ icon-preview.cpp
+ inkscape-preferences.cpp
+ input.cpp
+ layer-properties.cpp
+ layers.cpp
+ livepatheffect-editor.cpp
+ memory.cpp
+ messages.cpp
+ ocaldialogs.cpp
+ print-colors-preview-dialog.cpp
+ print.cpp
+ scriptdialog.cpp
+ session-player.cpp
+ svg-fonts-dialog.cpp
+ swatches.cpp
+ tile.cpp
+ tracedialog.cpp
+ transformation.cpp
+ undo-history.cpp
+ whiteboard-connect.cpp
+ whiteboard-sharewithchat.cpp
+ whiteboard-sharewithuser.cpp
)
+
+if(WIN32)
+ list(APPEND ui_dialog_SRC
+ filedialogimpl-win32.cpp
+ )
+endif()