diff options
| author | Aaron Spike <aaron@ekips.org> | 2008-04-10 04:48:40 +0000 |
|---|---|---|
| committer | acspike <acspike@users.sourceforge.net> | 2008-04-10 04:48:40 +0000 |
| commit | 28698fb36cebc5d661f66f06b723a6c9fbcb351a (patch) | |
| tree | 16176531940cc1ddc22ce0966e9abc05a2e7df15 /src/bind | |
| parent | replace setting flags as variables with use of add_definitions() to avoid quo... (diff) | |
| download | inkscape-28698fb36cebc5d661f66f06b723a6c9fbcb351a.tar.gz inkscape-28698fb36cebc5d661f66f06b723a6c9fbcb351a.zip | |
process source subdirectories with INCLUDE() instead of ADD_DIRECTORIES()
This more or less mimics what is being done by automake with the Makefile_insert files
What we were doing before did not work because add_directories() isn't able to
propagate variables upwards.
(bzr r5397)
Diffstat (limited to 'src/bind')
| -rw-r--r-- | src/bind/CMakeLists.txt | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/bind/CMakeLists.txt b/src/bind/CMakeLists.txt index c56bbd05d..bc52a6462 100644 --- a/src/bind/CMakeLists.txt +++ b/src/bind/CMakeLists.txt @@ -1,16 +1,6 @@ -SET(BIND_SRC +SET(bind_SRC dobinding.cpp javabind.cpp #javabind.h #javabind-private.h ) - -# Add New folders in src folder here -SET(bindfolders -java -javainc -) -
-FOREACH(binddirlist ${bindfolders}) -ADD_SUBDIRECTORY(${binddirlist}) -ENDFOREACH(binddirlist) |
