Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/buildsystem2/src/audio/CMakeLists.txt @ 2627

Last change on this file since 2627 was 2627, checked in by rgrieder, 15 years ago

Removed three calls to GET_ALL_HEADER_FILES which in turn calls FILE(GLOB_RECURSE), which is quite slow.

  • Property svn:eol-style set to native
File size: 1.7 KB
Line 
1 #
2 #             ORXONOX - the hottest 3D action shooter ever to exist
3 #                             > www.orxonox.net <
4 #
5 #        This program is free software; you can redistribute it and/or
6 #         modify it under the terms of the GNU General Public License
7 #        as published by the Free Software Foundation; either version 2
8 #            of the License, or (at your option) any later version.
9 #
10 #       This program is distributed in the hope that it will be useful,
11 #        but WITHOUT ANY WARRANTY; without even the implied warranty of
12 #        MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 #                 GNU General Public License for more details.
14 #
15 #   You should have received a copy of the GNU General Public License along
16 #      with this program; if not, write to the Free Software Foundation,
17 #     Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18 #
19
20SET_SOURCE_FILES(AUDIO_FILES
21  AudioBuffer.h
22  AudioIncludes.h
23  AudioManager.h
24  AudioPrereqs.h
25  AudioSource.h
26  AudioStream.h
27
28  AudioBuffer.cc
29  AudioManager.cc
30  AudioSource.cc
31  AudioStream.cc
32)
33#GET_ALL_HEADER_FILES(AUDIO_HDR_FILES)
34#SET(AUDIO_FILES ${AUDIO_SRC_FILES} ${AUDIO_HDR_FILES})
35GENERATE_SOURCE_GROUPS(${AUDIO_FILES})
36
37ADD_COMPILER_FLAGS("-w44244" MSVC)
38
39IF (MINGW)
40  ADD_LIBRARY( audio ${AUDIO_FILES})
41ELSE (MINGW)
42  ADD_LIBRARY( audio SHARED ${AUDIO_FILES})
43ENDIF (MINGW)
44
45SET_TARGET_PROPERTIES(audio PROPERTIES DEFINE_SYMBOL "AUDIO_SHARED_BUILD")
46TARGET_LINK_LIBRARIES( audio
47  ${OPENAL_LIBRARY}
48  ${ALUT_LIBRARY}
49  ${VORBISFILE_LIBRARY}
50  ${VORBIS_LIBRARY}
51  ${OGG_LIBRARY}
52  core
53  util
54)
55
56IF (NOT WIN32)
57  INSTALL(TARGETS audio LIBRARY DESTINATION lib)
58ENDIF (NOT WIN32)
Note: See TracBrowser for help on using the repository browser.