~vcs-imports/wengophone/trunk

« back to all changes in this revision

Viewing changes to libs/util/cutil/CMakeLists.txt

  • Committer: tanguy_k
  • Date: 2006-11-15 14:12:35 UTC
  • Revision ID: vcs-imports@canonical.com-20061115141235-6efc6e38eaa40ca0
* (compilation fix) OWBuild: rename portaudio to PORTAUDIO
* Libutil has only one include path now -> faster compilation
* Remove old directories
* (compilation fix) phapi: ph_msession_stopped() was a macro inside phmedia.h, now it is a standard function. Don't know why but it was not compiling under Windows using CMake

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
ow_create_static_library(owcutil)
2
2
 
3
 
ow_add_public_include_dirs(
4
 
        ${CMAKE_CURRENT_SOURCE_DIR}/include
5
 
)
6
 
 
7
3
ow_add_sources(
8
4
        src/fake.c
9
5
        src/strlcat.c
10
6
        src/strlcpy.c
11
7
)
 
8
 
 
9
ow_add_public_include_dirs(
 
10
        ${LIBUTIL_INCLUDE_DIRS}
 
11
)
12
12
 
13
13
if (MSVC)
14
14
        ow_add_public_include_dirs(
15
 
                ${CMAKE_CURRENT_SOURCE_DIR}/include/cutil/msvc
 
15
                ${CMAKE_CURRENT_SOURCE_DIR}/msvc
16
16
        )
17
17
endif (MSVC)
18
18