mirror of
https://github.com/ArthurSonzogni/Diagon.git
synced 2026-08-29 16:40:45 +08:00
6698c6aa40
Add the "Grammar" translated, powered by KGT. [KGT]: https://github.com/katef/kgt Bug: https://github.com/ArthurSonzogni/Diagon/issues/10
119 lines
4.5 KiB
CMake
119 lines
4.5 KiB
CMake
cmake_minimum_required (VERSION 3.11)
|
|
project(Diagon)
|
|
|
|
# ┌─────────────────────────────────────────────────┐
|
|
# │ Print Information about the compilation system │
|
|
# └─────────────────────────────────────────────────┘
|
|
if(CMAKE_CXX_COMPILER MATCHES "/em\\+\\+(-[a-zA-Z0-9.])?$")
|
|
set(Web true)
|
|
else()
|
|
set(Web false)
|
|
endif()
|
|
message("┌── Diagon configuration ───────────────────────")
|
|
message("│ - Build type : " ${CMAKE_BUILD_TYPE})
|
|
message("│ - C compiler: ${CMAKE_C_COMPILER}")
|
|
message("│ - C++ compiler: ${CMAKE_CXX_COMPILER}")
|
|
message("│ - System: " ${CMAKE_SYSTEM_NAME} )
|
|
message("│ - Use Web : " ${Web})
|
|
message("└────────────────────────────────────────────────")
|
|
|
|
# ┌─────────────────────────────────────────────────┐
|
|
# │ ANTLR │
|
|
# └─────────────────────────────────────────────────┘
|
|
execute_process(
|
|
COMMAND bash download_and_patch.sh
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/tools/antlr
|
|
)
|
|
|
|
SET(WITH_LIBCXX OFF CACHE BOOL "")
|
|
add_subdirectory(${CMAKE_SOURCE_DIR}/tools/antlr/antlr4/runtime/Cpp/ EXCLUDE_FROM_ALL)
|
|
include_directories(${CMAKE_SOURCE_DIR}/tools/antlr/antlr4/runtime/Cpp/runtime/src)
|
|
|
|
# Function
|
|
# ANTLR(<file.g4>)
|
|
#
|
|
# Description:
|
|
# Take an ANTLR file and produce a CMake rule to generate the corresponding
|
|
# C++ files.
|
|
#
|
|
# Notes:
|
|
# The ANTLR file path must be relative to ${CMAKE_CURRENT_SOURCE_DIR}
|
|
#
|
|
# Example:
|
|
# ANTLR(Grammar.g4)
|
|
function(ANTLR source)
|
|
get_filename_component(source_filename ${CMAKE_CURRENT_SOURCE_DIR}/${source} NAME_WE)
|
|
get_filename_component(source_src_dir ${CMAKE_CURRENT_SOURCE_DIR}/${source} DIRECTORY)
|
|
get_filename_component(source_gen_dir ${CMAKE_CURRENT_BINARY_DIR}/${source} DIRECTORY)
|
|
add_custom_command(
|
|
OUTPUT
|
|
${source_gen_dir}/${source_filename}Lexer.cpp
|
|
${source_gen_dir}/${source_filename}Parser.cpp
|
|
${source_gen_dir}/${source_filename}Lexer.h
|
|
${source_gen_dir}/${source_filename}Parser.h
|
|
COMMAND
|
|
java
|
|
ARGS
|
|
-jar ${CMAKE_SOURCE_DIR}/tools/antlr/antlr.jar
|
|
-Dlanguage=Cpp
|
|
-no-listener
|
|
-no-visitor
|
|
-o ${source_gen_dir}
|
|
${source_src_dir}/${source_filename}.g4
|
|
MAIN_DEPENDENCY
|
|
${source_src_dir}/${source_filename}.g4
|
|
)
|
|
endfunction()
|
|
|
|
function(target_set_common target)
|
|
set_property(TARGET ${target} PROPERTY CXX_STANDARD 17)
|
|
if (Web)
|
|
# Nothing
|
|
elseif (MSVC)
|
|
target_compile_options(${target} PRIVATE "/wd4244")
|
|
target_compile_options(${target} PRIVATE "/wd4267")
|
|
target_compile_options(${target} PRIVATE "/wd4996")
|
|
target_compile_options(${target} PRIVATE "/wd4305")
|
|
else()
|
|
target_compile_options(${target} PRIVATE "-Wall")
|
|
#target_compile_options(${target} PRIVATE "-Werror")
|
|
target_compile_options(${target} PRIVATE "-Wno-sign-compare")
|
|
target_compile_options(${target} PRIVATE "-Wno-attributes")
|
|
endif()
|
|
endfunction()
|
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
add_subdirectory(src)
|
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
execute_process(
|
|
COMMAND
|
|
git rev-list --count HEAD
|
|
WORKING_DIRECTORY
|
|
${CMAKE_SOURCE_DIR}
|
|
OUTPUT_VARIABLE
|
|
git_version
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE
|
|
)
|
|
|
|
set(CPACK_GENERATOR "DEB")
|
|
set(CPACK_PACKAGE_NAME "diagon")
|
|
set(CPACK_PACKAGE_VENDOR "Arthur Sonzogni")
|
|
set(CPACK_DEBIAN_PACKAGE_MAINTAINER "Arthur Sonzogni")
|
|
set(CPACK_PACKAGE_VERSION_MAJOR ${git_version})
|
|
set(CPACK_PACKAGE_VERSION_MINOR "")
|
|
set(CPACK_PACKAGE_VERSION_PATCH "")
|
|
set(CPACK_DEBIAN_PACKAGE_VERSION ${git_version})
|
|
set(CPACK_PACKAGE_HOMEPAGE_URL "https://arthursonzogni.com/Diagon/")
|
|
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "
|
|
Generate beautiful ASCII art diagrams.
|
|
Diagon is a collection of interactive generators. Math formulas, sequences diagrams, graph,
|
|
border, ... This is written in C++, available online with WebAssembly.
|
|
")
|
|
set(CPACK_DEBIAN_PACKAGE_DEPENDS " ")
|
|
set(CPACK_DEBIAN_PACKAGE_HOMEPAGE "https://arthursonzogni.com/Diagon/")
|
|
|
|
include(CPack)
|