diff options
author | Marius Kintel <marius@kintel.net> | 2013-05-21 21:45:24 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-05-21 21:45:24 (GMT) |
commit | e2772c70b862e3669c3a279f2540d746438ec38d (patch) | |
tree | ac2505cacb5289b9e9c217a66ef75a54748a25b0 /openscad.pro | |
parent | f8622005f89c52061f498ab6ec28adfbd332c344 (diff) |
Initial Windows implementation of built-in library path. Part of #125
Diffstat (limited to 'openscad.pro')
-rw-r--r-- | openscad.pro | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/openscad.pro b/openscad.pro index 542bcc3..c36c37b 100644 --- a/openscad.pro +++ b/openscad.pro @@ -384,7 +384,14 @@ macx { src/EventFilter.h \ src/CocoaUtils.h SOURCES += src/AppleEvents.cc - OBJECTIVE_SOURCES += src/CocoaUtils.mm + OBJECTIVE_SOURCES += src/CocoaUtils.mm \ + src/PlatformUtils.mm +} +unix:!macx { + SOURCES += src/PlatformUtils-posix.cc +} +win32* { + SOURCES += src/PlatformUtils-win32.cc } isEmpty(PREFIX):PREFIX = /usr/local |