2014-11-29 00:47:50 +01:00
|
|
|
#
|
2014-11-29 21:38:52 +01:00
|
|
|
# Monicelli: an esoteric language compiler
|
2014-11-29 00:47:50 +01:00
|
|
|
#
|
|
|
|
# Copyright (C) 2014 Stefano Sanfilippo
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
|
2014-11-29 21:44:47 +01:00
|
|
|
project(Monicelli)
|
|
|
|
cmake_minimum_required(VERSION 2.8)
|
2014-11-28 19:01:34 +01:00
|
|
|
|
2014-12-10 23:02:55 +01:00
|
|
|
message("== Only a limited set of platforms was tested. We need your help!")
|
|
|
|
message("== Report build errors to https://github.com/esseks/monicelli/issues")
|
|
|
|
|
|
|
|
## 1. Compiler sanity check
|
|
|
|
|
|
|
|
try_compile(
|
|
|
|
supported_compiler
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/cmake/features.cpp
|
|
|
|
COMPILE_DEFINITIONS -std=c++0x
|
|
|
|
OUTPUT_VARIABLE features_build_log
|
|
|
|
)
|
|
|
|
|
|
|
|
if (checkfeat)
|
|
|
|
message(${features_build_log})
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (NOT supported_compiler)
|
|
|
|
message(FATAL_ERROR
|
|
|
|
"Some C++11 features we need are not implemented by your compiler.\n"
|
|
|
|
"Run cmake with -Dcheckfeat=1 to see the exact cause."
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
## 2. Find Flex and Bison
|
|
|
|
|
2014-11-29 21:44:47 +01:00
|
|
|
find_package(BISON REQUIRED)
|
2014-12-10 23:02:55 +01:00
|
|
|
find_package(FLEX 2.5 REQUIRED)
|
|
|
|
|
|
|
|
if (BISON_VERSION VERSION_LESS 2.5)
|
|
|
|
message(FATAL_ERROR "At least Bison 2.5 is required.")
|
|
|
|
elseif(BISON_VERSION VERSION_LESS 3.0)
|
|
|
|
message("== Bison 2.5 was found. You have to apply cmake/bison2.patch...")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
## 3. Build
|
2014-11-29 11:11:43 +01:00
|
|
|
|
2014-11-29 21:44:47 +01:00
|
|
|
include_directories(
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
|
|
)
|
2014-11-23 19:04:25 +01:00
|
|
|
|
2014-11-29 21:44:47 +01:00
|
|
|
add_definitions(-Wall -Wno-deprecated-register -std=c++0x -DYYDEBUG=0 -O2)
|
2014-11-29 11:11:43 +01:00
|
|
|
|
2014-11-29 21:44:47 +01:00
|
|
|
bison_target(Parser Monicelli.ypp ${CMAKE_CURRENT_BINARY_DIR}/Parser.cpp)
|
|
|
|
flex_target(Scanner Monicelli.lpp ${CMAKE_CURRENT_BINARY_DIR}/Lexer.cpp)
|
2014-12-04 21:50:15 +01:00
|
|
|
add_flex_bison_dependency(Scanner Parser)
|
2014-11-29 11:11:43 +01:00
|
|
|
|
2014-11-29 21:44:47 +01:00
|
|
|
add_executable(
|
|
|
|
mcc
|
|
|
|
main.cpp Nodes.cpp ${BISON_Parser_OUTPUTS} ${FLEX_Scanner_OUTPUTS}
|
|
|
|
)
|
2014-11-23 19:04:25 +01:00
|
|
|
|