diff options
| author | Alexandre Deckner <alexandre.deckner@uzzl.com> | 2012-07-03 21:12:20 +0200 |
|---|---|---|
| committer | Alexandre Deckner <alexandre.deckner@uzzl.com> | 2012-07-03 21:12:20 +0200 |
| commit | 1ef59aee8ebaf0870fd60e4e66a60c116d2fb5a0 (patch) | |
| tree | 37c3885db699be4f6fdf0aa99c4eea1e845d00ec | |
| parent | de3c221462b22f8d65d51cd96334620b3fd65307 (diff) | |
Add Jamfile for WebPositivehrev44287
| -rw-r--r-- | src/apps/Jamfile | 1 | ||||
| -rw-r--r-- | src/apps/webpositive/Jamfile | 65 |
2 files changed, 66 insertions, 0 deletions
diff --git a/src/apps/Jamfile b/src/apps/Jamfile index 0d7b2f7519..13783d4521 100644 --- a/src/apps/Jamfile +++ b/src/apps/Jamfile @@ -60,4 +60,5 @@ HaikuSubInclude text_search ; HaikuSubInclude tracker ; HaikuSubInclude tv ; HaikuSubInclude webwatch ; +HaikuSubInclude webpositive ; HaikuSubInclude workspaces ; diff --git a/src/apps/webpositive/Jamfile b/src/apps/webpositive/Jamfile new file mode 100644 index 0000000000..60febdd8d9 --- /dev/null +++ b/src/apps/webpositive/Jamfile @@ -0,0 +1,65 @@ +SubDir HAIKU_TOP src apps webpositive ; + +UseLibraryHeaders webkit ; + +SubDirC++Flags $(defines) -Wno-error=sequence-point ; +SubDirCcFlags $(defines) -Wno-error=sequence-point ; + +# source directories +local sourceDirs = + autocompletion + support + tabview +; + +local sourceDir ; +for sourceDir in $(sourceDirs) { + SEARCH_SOURCE += [ FDirName $(HAIKU_TOP) src apps webpositive $(sourceDir) ] ; +} + +# SVN revision +#local svnRevisionFile = [ FGristFiles svn_revision ] ; +#MakeLocate $(svnRevisionFile) : $(LOCATE_TARGET) ; +#CreateSVNRevisionFile $(svnRevisionFile) ; + +Application WebPositive : + # autocompletion + AutoCompleter.cpp + AutoCompleterDefaultImpl.cpp + TextViewCompleter.cpp + + # support + BaseURL.cpp + BitmapButton.cpp + DateTime.cpp + FontSelectionView.cpp + IconButton.cpp + SettingsMessage.cpp + StringForSize.cpp + + # tabview + TabContainerView.cpp + TabManager.cpp + TabView.cpp + + AuthenticationPanel.cpp + BrowserApp.cpp + BrowserWindow.cpp + BrowsingHistory.cpp + CredentialsStorage.cpp + DownloadProgressView.cpp + DownloadWindow.cpp + SettingsKeys.cpp + SettingsWindow.cpp + svn_revision.cpp + URLInputGroup.cpp + : + # webkit libs + javascriptcore webcore webkit wtf + # dependencies + curl icuuc icudata png sqlite3 xml2 z + # haiku + be bsd localestub network stdc++ tracker translation + : + WebPositive.rdef +; |
