diff options
| author | Campbell Barton <ideasman42@gmail.com> | 2011-06-13 00:19:17 +0000 |
|---|---|---|
| committer | Campbell Barton <ideasman42@gmail.com> | 2011-06-13 00:19:17 +0000 |
| commit | 7172735786c43c2305a92ffd4e5d285d11f88f7f (patch) | |
| tree | cde79c7dbcbd0d5a26c21bf136fa43b157057912 /src/bind | |
| parent | cmake: fix for error reading non existing file which would error out cmake's ... (diff) | |
| download | inkscape-7172735786c43c2305a92ffd4e5d285d11f88f7f.tar.gz inkscape-7172735786c43c2305a92ffd4e5d285d11f88f7f.zip | |
cmake:
turns out my recent commits (which I undid) were not incorrect, variables were set in subdirectories then used in the parent directory, where they were still unset.
Fixing this broke the build because some files in the subdir were not compiling.
(bzr r10276)
Diffstat (limited to 'src/bind')
| -rw-r--r-- | src/bind/CMakeLists.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/bind/CMakeLists.txt b/src/bind/CMakeLists.txt index 71bf0b602..d0f7c7ca0 100644 --- a/src/bind/CMakeLists.txt +++ b/src/bind/CMakeLists.txt @@ -1,6 +1,7 @@ + set(bind_SRC dobinding.cpp javabind.cpp ) -add_library(bind_LIB STATIC ${bind_SRC}) -target_link_libraries(bind_LIB ${INKSCAPE_LIBS}) + +add_library(bind_LIB ${bind_SRC}) |
