de255c24d6363957bb10a32733de6068b0d47ca3
[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
28 ## Add target for bison parser generation
29
30 FIND_PROGRAM(BISON_EXECUTABLE bison)
31 IF (NOT BISON_EXECUTABLE)
32   MESSAGE(FATAL_ERROR "bison not found - aborting")
33 ENDIF (NOT BISON_EXECUTABLE)
34 ADD_CUSTOM_COMMAND(
35   OUTPUT ${MINISWIG_SOURCE_DIR}/parser.cpp ${MINISWIG_SOURCE_DIR}/parser.hpp
36   COMMAND ${BISON_EXECUTABLE}
37   ARGS -d -o ${MINISWIG_SOURCE_DIR}/parser.cpp ${MINISWIG_SOURCE_DIR}/parser.yy
38   DEPENDS parser.yy
39 )
40
41 ## Add target for flex lexical analyzer generation
42
43 FIND_PROGRAM(FLEX_EXECUTABLE flex)
44 IF (NOT FLEX_EXECUTABLE)
45   MESSAGE(FATAL_ERROR "flex not found - aborting")
46 ENDIF (NOT FLEX_EXECUTABLE)
47 ADD_CUSTOM_COMMAND(
48   OUTPUT ${MINISWIG_SOURCE_DIR}/lexer.cpp
49   COMMAND ${FLEX_EXECUTABLE}
50   ARGS -o ${MINISWIG_SOURCE_DIR}/lexer.cpp ${MINISWIG_SOURCE_DIR}/lexer.ll
51   DEPENDS lexer.ll ${MINISWIG_SOURCE_DIR}/parser.hpp
52 )
53
54 ## build list of source files
55
56 FILE(GLOB MINISWIG_SOURCES RELATIVE ${MINISWIG_SOURCE_DIR} *.cpp)
57
58 ## Add target for miniswig binary
59
60 ADD_EXECUTABLE(miniswig ${MINISWIG_SOURCES} ${MINISWIG_SOURCE_DIR}/parser.cpp ${MINISWIG_SOURCE_DIR}/lexer.cpp)