93607a07c86ebe1ec62a179c28c9778c746904c5
[supertux.git] / tools / miniswig / CMakeLists.txt
1 #
2 # SuperTux - miniswig build script
3 # Copyright (C) 2007 Timothy Goya <tuxdev103@gmail.com>
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (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
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18 #
19
20 ## Project name to use as command prefix
21
22 PROJECT(MINISWIG)
23
24 ## add additional compiler switches
25
26 ADD_DEFINITIONS(-include ${CMAKE_BINARY_DIR}/config.h)
27 REMOVE_DEFINITIONS(-Wall)
28
29 ## Include paths to make generated files work
30
31 INCLUDE_DIRECTORIES (${MINISWIG_SOURCE_DIR})
32
33 ## build list of source files
34
35 FILE(GLOB MINISWIG_SOURCES RELATIVE ${MINISWIG_SOURCE_DIR} create_docu.cpp create_wrapper.cpp main.cpp tree.cpp xmlwriter.cpp)
36
37 ## Add target for bison parser generation
38
39 MARK_AS_ADVANCED(BISON_EXECUTABLE)
40 FIND_PROGRAM(BISON_EXECUTABLE bison)
41 IF (NOT BISON_EXECUTABLE)
42   MESSAGE(FATAL_ERROR "bison not found - aborting")
43 ENDIF (NOT BISON_EXECUTABLE)
44 ADD_CUSTOM_COMMAND(
45   OUTPUT ${MINISWIG_BINARY_DIR}/parser.cpp ${MINISWIG_BINARY_DIR}/parser.hpp
46   COMMAND ${BISON_EXECUTABLE}
47   ARGS -d -o ${MINISWIG_BINARY_DIR}/parser.cpp ${MINISWIG_SOURCE_DIR}/parser.yy
48   DEPENDS parser.yy
49 )
50
51 ## Add target for flex lexical analyzer generation
52
53 MARK_AS_ADVANCED(FLEX_EXECUTABLE)
54 FIND_PROGRAM(FLEX_EXECUTABLE flex)
55 IF (NOT FLEX_EXECUTABLE)
56   MESSAGE(FATAL_ERROR "flex not found - aborting")
57 ENDIF (NOT FLEX_EXECUTABLE)
58 ADD_CUSTOM_COMMAND(
59   OUTPUT ${MINISWIG_BINARY_DIR}/lexer.cpp
60   COMMAND ${FLEX_EXECUTABLE}
61   ARGS -o ${MINISWIG_BINARY_DIR}/lexer.cpp ${MINISWIG_SOURCE_DIR}/lexer.ll
62   DEPENDS lexer.ll ${MINISWIG_BINARY_DIR}/parser.hpp
63 )
64
65 ## Add target for miniswig binary
66
67 ADD_EXECUTABLE(miniswig ${MINISWIG_SOURCES} ${MINISWIG_BINARY_DIR}/parser.cpp ${MINISWIG_BINARY_DIR}/lexer.cpp)