2018-01-19 21:43:19 +00:00
|
|
|
# Copyright (c) 2017 Calvin Rose
|
|
|
|
#
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
# of this software and associated documentation files (the "Software"), to
|
|
|
|
# deal in the Software without restriction, including without limitation the
|
|
|
|
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
|
|
# sell copies of the Software, and to permit persons to whom the Software is
|
|
|
|
# furnished to do so, subject to the following conditions:
|
|
|
|
#
|
|
|
|
# The above copyright notice and this permission notice shall be included in
|
|
|
|
# all copies or substantial portions of the Software.
|
|
|
|
#
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
|
# IN THE SOFTWARE.
|
|
|
|
|
2018-01-29 20:46:26 +00:00
|
|
|
cmake_minimum_required(VERSION 3.7)
|
2018-01-19 21:43:19 +00:00
|
|
|
project(dst)
|
|
|
|
|
|
|
|
# Set Some Variables
|
|
|
|
set(TARGET_NAME ${PROJECT_NAME})
|
2018-01-29 20:46:26 +00:00
|
|
|
set (CMAKE_C_STANDARD 99)
|
2018-02-02 01:09:22 +00:00
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall")
|
2018-01-19 21:43:19 +00:00
|
|
|
|
|
|
|
include_directories(src/include)
|
2018-01-31 22:39:18 +00:00
|
|
|
include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
|
|
|
|
|
|
|
# Make tools for generating embeddable headers
|
|
|
|
add_executable(xxd src/tools/xxd.c)
|
|
|
|
|
|
|
|
# Generate header containing standard library
|
|
|
|
add_custom_command(
|
|
|
|
OUTPUT dststlbootstrap.h
|
|
|
|
COMMAND xxd ${CMAKE_CURRENT_SOURCE_DIR}/src/compiler/boot.dst dststlbootstrap.h dst_stl_bootstrap_gen
|
|
|
|
DEPENDS xxd src/compiler/boot.dst
|
|
|
|
COMMENT "Generating stl bootstrap C header for embedding"
|
|
|
|
)
|
2018-01-19 21:43:19 +00:00
|
|
|
|
|
|
|
set(ASSEMBLER_SOURCES
|
|
|
|
src/assembler/asm.c
|
|
|
|
)
|
|
|
|
|
|
|
|
set(COMPILER_SOURCES
|
|
|
|
src/compiler/compile.c
|
2018-01-24 22:59:00 +00:00
|
|
|
src/compiler/specials.c
|
|
|
|
src/compiler/cfuns.c
|
2018-01-19 21:43:19 +00:00
|
|
|
src/compiler/context.c
|
2018-01-30 04:38:49 +00:00
|
|
|
src/compiler/stl.c
|
2018-01-31 22:39:18 +00:00
|
|
|
dststlbootstrap.h
|
2018-01-19 21:43:19 +00:00
|
|
|
|
|
|
|
src/compiler/compile.h
|
|
|
|
)
|
|
|
|
|
|
|
|
set(CORE_SOURCES
|
|
|
|
src/core/abstract.c
|
|
|
|
src/core/array.c
|
|
|
|
src/core/buffer.c
|
2018-01-20 22:19:47 +00:00
|
|
|
src/core/bytecode.c
|
2018-01-30 04:38:49 +00:00
|
|
|
src/core/corelib.c
|
2018-01-19 21:43:19 +00:00
|
|
|
src/core/fiber.c
|
|
|
|
src/core/gc.c
|
|
|
|
src/core/io.c
|
|
|
|
src/core/math.c
|
|
|
|
src/core/native.c
|
|
|
|
src/core/string.c
|
|
|
|
src/core/struct.c
|
|
|
|
src/core/symcache.c
|
|
|
|
src/core/table.c
|
|
|
|
src/core/tuple.c
|
|
|
|
src/core/util.c
|
|
|
|
src/core/value.c
|
|
|
|
src/core/vm.c
|
|
|
|
src/core/wrap.c
|
|
|
|
|
|
|
|
src/core/gc.h
|
|
|
|
src/core/symcache.h
|
|
|
|
src/core/util.h
|
|
|
|
)
|
|
|
|
|
|
|
|
set(MAINCLIENT_SOURCES
|
|
|
|
src/mainclient/main.c
|
2018-01-30 04:38:49 +00:00
|
|
|
src/mainclient/linenoise.c
|
|
|
|
|
|
|
|
src/mainclient/linenoise.h
|
2018-01-19 21:43:19 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
set(PARSER_SOURCES
|
2018-02-03 18:55:55 +00:00
|
|
|
src/parser/ast.c
|
2018-01-19 21:43:19 +00:00
|
|
|
src/parser/parse.c
|
|
|
|
src/parser/strtod.c
|
|
|
|
)
|
|
|
|
|
|
|
|
set(TESTLIB_SOURCES
|
|
|
|
src/testlib/testlib.c
|
|
|
|
)
|
|
|
|
|
2018-01-29 20:46:26 +00:00
|
|
|
set(REPL_SOURCES
|
2018-01-19 21:43:19 +00:00
|
|
|
${ASSEMBLER_SOURCES}
|
|
|
|
${COMPILER_SOURCES}
|
|
|
|
${CORE_SOURCES}
|
|
|
|
${MAINCLIENT_SOURCES}
|
|
|
|
${PARSER_SOURCES}
|
|
|
|
)
|
|
|
|
|
2018-01-29 20:46:26 +00:00
|
|
|
# Set Public headers
|
|
|
|
set(DST_PUBLIC_HEADERS
|
|
|
|
src/include/dst/dst.h
|
|
|
|
src/include/dst/dstasm.h
|
|
|
|
src/include/dst/dstcompile.h
|
|
|
|
src/include/dst/dstconfig.h
|
|
|
|
src/include/dst/dstopcodes.h
|
|
|
|
src/include/dst/dstparse.h
|
|
|
|
src/include/dst/dststate.h
|
2018-02-01 03:53:31 +00:00
|
|
|
src/include/dst/dstcorelib.h
|
2018-01-29 20:46:26 +00:00
|
|
|
src/include/dst/dsttypes.h
|
|
|
|
)
|
|
|
|
|
2018-01-19 21:43:19 +00:00
|
|
|
# Build the executable
|
2018-01-29 20:46:26 +00:00
|
|
|
add_executable(${TARGET_NAME} ${REPL_SOURCES})
|
2018-02-02 01:09:22 +00:00
|
|
|
if (UNIX)
|
|
|
|
target_link_libraries(${TARGET_NAME} m dl)
|
|
|
|
endif (UNIX)
|
2018-01-29 20:46:26 +00:00
|
|
|
set_target_properties(${TARGET_NAME} PROPERTIES PUBLIC_HEADER "${DST_PUBLIC_HEADERS}")
|
|
|
|
|
|
|
|
# Install
|
|
|
|
install(TARGETS ${TARGET_NAME}
|
|
|
|
LIBRARY DESTINATION "lib"
|
|
|
|
RUNTIME DESTINATION "bin"
|
|
|
|
PUBLIC_HEADER DESTINATION "include/dst"
|
|
|
|
)
|
|
|
|
|
|
|
|
# Add some test scripts
|
|
|
|
enable_testing()
|
|
|
|
add_test(suite0 ${TARGET_NAME} ${CMAKE_CURRENT_SOURCE_DIR}/test/suite0.dst)
|
|
|
|
add_test(suite1 ${TARGET_NAME} ${CMAKE_CURRENT_SOURCE_DIR}/test/suite1.dst)
|
|
|
|
|
|
|
|
# Add convenience script to run repl
|
|
|
|
add_custom_target(run
|
|
|
|
COMMAND ${TARGET_NAME}
|
|
|
|
DEPENDS ${TARGET_NAME}
|
|
|
|
WORKING_DIRECTORY ${CMAKE_PROJECT_DIR}
|
|
|
|
)
|