diff options
| author | Matthias Melcher <fltk@matthiasm.com> | 2010-02-25 23:29:42 +0000 |
|---|---|---|
| committer | Matthias Melcher <fltk@matthiasm.com> | 2010-02-25 23:29:42 +0000 |
| commit | 60c1ccd33e0e87bacb45d87a9fc3e58b7a9e0723 (patch) | |
| tree | 25338fedbec8221c232340eaa1b29462050fc3b8 /fluid/ide_support.cxx | |
| parent | 7f395e6e4410e376ff95c914506d1599083afce7 (diff) | |
Working VisualC suport in IDE's (dll's are still missing). Fixed a few warnings.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7147 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'fluid/ide_support.cxx')
| -rw-r--r-- | fluid/ide_support.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fluid/ide_support.cxx b/fluid/ide_support.cxx index e639f829a..5110bf202 100644 --- a/fluid/ide_support.cxx +++ b/fluid/ide_support.cxx @@ -680,6 +680,7 @@ int create_new_database(const char *filename) db.add_source(files_db, "test/blocks.cxx"); db.add_lib(fltk_lib); xcode_only(db.add_external_lib(files_db, "/System/Library/Frameworks/CoreAudio.framework")); + visualc_only(db.add_external_lib(files_db, "winmm.lib")); demo_db.depends_on(db); } @@ -1058,6 +1059,7 @@ int create_new_database(const char *filename) db.add_lib(fltk_jpeg_lib); db.add_lib(fltk_png_lib); xcode_only(db.add_external_lib(files_db, "/System/Library/Frameworks/CoreAudio.framework")); + visualc_only(db.add_external_lib(files_db, "winmm.lib")); demo_db.depends_on(db); } |
