summaryrefslogtreecommitdiffstats
path: root/CMakeScripts (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Cmake: Moved helper macros to their own file and removed *-test.h from ↵Joshua L. Blocher2008-05-053-3/+19
| | | | | inkscape source list (bzr r5608)
* Cmake: Fixed HAVE_CAIRO_PDF and moved ConfigChecks to it's own fileJoshua L. Blocher2008-05-035-80/+80
| | | (bzr r5590)
* Cmake: Fix some double linking flagsJoshua L. Blocher2008-05-031-14/+12
| | | (bzr r5584)
* Cmake: More cleanup moved all known paths into ConfigPaths.cmake and temp ↵Joshua L. Blocher2008-05-023-4/+41
| | | | | Linking checking to help resolve linking issues (bzr r5576)
* Cmake: Fixed optional dependency linkingJoshua L. Blocher2008-04-281-1/+1
| | | (bzr r5539)
* Cmake: Correct INKSCAPE_LIBDIR value in config.h.cmake, to correct compiling ↵Joshua L. Blocher2008-04-111-26/+26
| | | | | issue with dependency.cpp (bzr r5406)
* cmake: include javainc dir. please check if this works on linux and solaris tooJohan B. C. Engelen2008-04-102-0/+15
| | | (bzr r5399)
* replace setting flags as variables with use of add_definitions() to avoid ↵Aaron Spike2008-04-101-10/+8
| | | | | quoting issues and because it looks like the proper cmake way (bzr r5396)
* don't set -j anything by default - its not useful and may cause breakage ↵Peter Linnell2008-04-091-1/+1
| | | | | debugging the new cmake build setup (bzr r5395)
* cmake: remove slashes from previous commit. they really should not be there. ↵Johan B. C. Engelen2008-04-081-1/+1
| | | | | looking elsewhere to fix my prob... (bzr r5387)
* cmake: add CheckStructMember.cmake from KDE. enable struct checks (does this ↵Johan B. C. Engelen2008-04-072-6/+68
| | | | | struct even exist? not here on windows) (bzr r5383)
* cmake: add many config define checksJohan B. C. Engelen2008-04-071-4/+37
| | | (bzr r5382)
* cmake: add \\ to string define so result is something like: -DSSL=\" sfsdf ↵Johan B. C. Engelen2008-04-071-1/+1
| | | | | \" (note the slashes in front of the ") (bzr r5381)
* cmake: generate config files in CMAKE_BINARY_DIR instead of ↵Johan B. C. Engelen2008-04-071-5/+5
| | | | | CMAKE_CURRENT_BINARY_DIR . add extra comments. (bzr r5378)
* cmake: EOLJohan B. C. Engelen2008-04-071-110/+110
| | | (bzr r5377)
* cmake: make all cmakescripts svn:eol-style native. solved problem i thinkJohan B. C. Engelen2008-04-071-0/+1
| | | (bzr r5375)
* cmake: add comment of why to add base binary dir to include pathJohan B. C. Engelen2008-04-071-2/+2
| | | (bzr r5373)
* cmake: add pango defines necessary for win32 building, also needed for linux?Johan B. C. Engelen2008-04-071-0/+4
| | | (bzr r5371)
* cmake: add compile flags to C flags as wellJohan B. C. Engelen2008-04-071-0/+1
| | | (bzr r5370)
* cmake: add CMAKE_CURRENT_BINARY_DIR to include pathJohan B. C. Engelen2008-04-071-0/+2
| | | (bzr r5368)
* add CFLAGS from dependencies to CMAKE_C_FLAGS as well (instead of only to CXX)Johan B. C. Engelen2008-04-071-0/+1
| | | (bzr r5367)
* Cmake: Moved CMAKE_C_FLAGS to ConfigCompileFlags.cmakeJoshua L. Blocher2008-04-071-0/+1
| | | (bzr r5366)
* CMake: add optional flags when foundAaron Spike2008-04-071-0/+2
| | | (bzr r5365)
* CMake build workAaron Spike2008-04-061-0/+2
| | | | | | | - Comment inkview.cpp because it is another executable file. These will each need to be separated into their own targets. - Move deptool.cpp into win32 only. perhaps this isn't used at all for cmake builds. - aggregate all the link flags into a var and pass to the linker to avoid platform specific naming conventions. (bzr r5356)
* cmake: remove quotes from execute_command. now it works.Johan B. C. Engelen2008-04-051-4/+5
| | | (bzr r5350)
* cmake: fix file names in marshal generationJohan B. C. Engelen2008-04-051-10/+9
| | | (bzr r5349)
* Cmake: UseGlibMarshal updateJoshua L. Blocher2008-04-051-3/+4
| | | (bzr r5347)
* cmake: marshal files; fix to use correct result variableJohan B. C. Engelen2008-04-051-3/+3
| | | (bzr r5345)
* cmake: revert last commit because the current directory is included when ↵Johan B. C. Engelen2008-04-051-1/+1
| | | | | building (bzr r5344)
* cmake: fix include location of sp-marshalJohan B. C. Engelen2008-04-051-1/+1
| | | (bzr r5343)
* cmake: fix wrong direction of slashesJohan B. C. Engelen2008-04-051-1/+1
| | | (bzr r5342)
* cmake: fix error in UseGlibMarshal.cmakeJohan B. C. Engelen2008-04-051-5/+5
| | | (bzr r5341)
* Cmake: add missing CMakeLists.txtJoshua L. Blocher2008-04-051-5/+5
| | | (bzr r5340)
* Cmake: add UseGlibMarshal.cmake for generating filesJoshua L. Blocher2008-04-051-0/+27
| | | (bzr r5338)
* cmake: add HAVE_GETOPT_HJohan B. C. Engelen2008-04-041-0/+1
| | | (bzr r5328)
* cmake: put each dependency on new line, for better svn diffs.Johan B. C. Engelen2008-04-041-2/+21
| | | | | add libxml-2.0 dependency (bzr r5325)
* Cmake: Generate inkscape_version.hJoshua L. Blocher2008-03-311-0/+3
| | | (bzr r5286)
* fix typos in config.h.cmakeJohan B. C. Engelen2008-03-311-2/+10
| | | | | add optional profiling flags (bzr r5282)
* cmake: add define flagsJohan B. C. Engelen2008-03-312-2/+12
| | | (bzr r5275)
* add specific location for compiler flags; like optimization, define, debug ↵Johan B. C. Engelen2008-03-311-0/+7
| | | | | and warning flags (bzr r5274)
* Cmake: added more Platform File ChecksJoshua L. Blocher2008-03-311-2/+23
| | | (bzr r5273)
* Cmake: Start of Platform ChecksJoshua L. Blocher2008-03-311-1/+2
| | | (bzr r5269)
* cmake: add finding script for garbage collector!Johan B. C. Engelen2008-03-302-1/+29
| | | (bzr r5264)
* cmake: remove file to find gtk2, because it is not needed and not used.Johan B. C. Engelen2008-03-301-348/+0
| | | (bzr r5263)
* cmake: remove debug messageJohan B. C. Engelen2008-03-301-2/+1
| | | (bzr r5260)
* cmake: add boost to the include directories when it is foundJohan B. C. Engelen2008-03-301-0/+1
| | | (bzr r5259)
* fix creation of CXX flags stringJohan B. C. Engelen2008-03-301-1/+2
| | | (bzr r5258)
* Cmake: cflags fixJoshua L. Blocher2008-03-301-0/+5
| | | (bzr r5257)
* Final fix to boost finding on windows for cmakeJohan B. C. Engelen2008-03-301-5/+4
| | | (bzr r5256)
* clean up FindBoost.cmakeJohan B. C. Engelen2008-03-301-20/+1
| | | (bzr r5255)