Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Main Repositories
otb
Commits
45fa7ce5
Commit
45fa7ce5
authored
Mar 25, 2009
by
Emmanuel Christophe
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Working version
parents
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
0 deletions
+29
-0
CMakeLists.txt
CMakeLists.txt
+12
-0
myOwnMapnik.cpp
myOwnMapnik.cpp
+17
-0
No files found.
CMakeLists.txt
0 → 100644
View file @
45fa7ce5
cmake_minimum_required
(
VERSION 2.6
)
PROJECT
(
mapnik
)
INCLUDE_DIRECTORIES
(
"/home/christop/slash/include"
)
INCLUDE_DIRECTORIES
(
"/usr/include/freetype2"
)
LINK_DIRECTORIES
(
"/home/christop/slash/lib"
)
ADD_EXECUTABLE
(
myOwnMapnik myOwnMapnik.cxx
)
TARGET_LINK_LIBRARIES
(
myOwnMapnik mapnik
)
\ No newline at end of file
myOwnMapnik.cpp
0 → 100644
View file @
45fa7ce5
#define BOOST_SPIRIT_THREADSAFE
#include <mapnik/map.hpp>
#include <mapnik/datasource_cache.hpp>
#include <mapnik/font_engine_freetype.hpp>
#include <mapnik/agg_renderer.hpp>
#include <mapnik/filter_factory.hpp>
#include <mapnik/color_factory.hpp>
#include <mapnik/image_util.hpp>
#include <mapnik/config_error.hpp>
#include <iostream>
int
main
(
int
argc
,
char
**
argv
)
{
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment