Compare commits
3 Commits
562b2bf4cc
...
6013c6bc1c
Author | SHA1 | Date |
---|---|---|
|
6013c6bc1c | |
|
690cba51f4 | |
|
336e27b827 |
Binary file not shown.
101
bargo.py
101
bargo.py
|
@ -24,12 +24,66 @@ out/
|
|||
./out/
|
||||
"""
|
||||
|
||||
cmake_macros = """macro(sanitizers target_name)
|
||||
if (${ENABLE_ADDRSAN} MATCHES ON)
|
||||
target_compile_options(${target_name} PRIVATE -fsanitize=address)
|
||||
target_link_options(${target_name} PRIVATE -fsanitize=address)
|
||||
endif ()
|
||||
|
||||
if (${ENABLE_UBSAN} MATCHES ON)
|
||||
target_compile_options(${target_name} PRIVATE -fsanitize=undefined)
|
||||
target_link_options(${target_name} PRIVATE -fsanitize=undefined)
|
||||
endif ()
|
||||
|
||||
if (${ENABLE_TSAN} MATCHES ON)
|
||||
target_compile_options(${target_name} PRIVATE -fsanitize=thread)
|
||||
target_link_options(${target_name} PRIVATE -fsanitize=thread)
|
||||
endif ()
|
||||
endmacro()
|
||||
|
||||
macro(compile_options target_name)
|
||||
if (NOT ${MOLD} STREQUAL MOLD-NOTFOUND)
|
||||
target_compile_options(${target_name} PUBLIC -fuse-ld=mold)
|
||||
endif ()
|
||||
|
||||
target_compile_options(${target_name} PRIVATE -Wall -Wextra -Wpedantic -Wno-comment)
|
||||
target_link_options(${target_name} PRIVATE -Wall -Wextra -Wpedantic -Wno-comment)
|
||||
sanitizers(${target_name})
|
||||
endmacro()
|
||||
|
||||
macro(blt_add_project name source type)
|
||||
|
||||
project(${name}-${type})
|
||||
|
||||
add_executable(${name}-${type} ${source})
|
||||
|
||||
target_link_libraries(${name}-${type} PRIVATE BLT blt-gp Threads::Threads)
|
||||
|
||||
compile_options(${name}-${type})
|
||||
target_compile_definitions(${name}-${type} PRIVATE BLT_DEBUG_LEVEL=${DEBUG_LEVEL})
|
||||
|
||||
if (${TRACK_ALLOCATIONS})
|
||||
target_compile_definitions(${name}-${type} PRIVATE BLT_TRACK_ALLOCATIONS=1)
|
||||
endif ()
|
||||
|
||||
add_test(NAME ${name} COMMAND ${name}-${type})
|
||||
|
||||
set_property(TEST ${name} PROPERTY FAIL_REGULAR_EXPRESSION "FAIL;ERROR;FATAL;exception")
|
||||
|
||||
project(${PROJECT_NAME})
|
||||
endmacro()"""
|
||||
|
||||
cmake_exec_default_text = """cmake_minimum_required(VERSION ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION})
|
||||
|
||||
${MACROS}
|
||||
|
||||
project(${PROJECT_NAME} VERSION 0.0.1)
|
||||
|
||||
option(ENABLE_ADDRSAN "Enable the address sanitizer" OFF)
|
||||
option(ENABLE_UBSAN "Enable the ub sanitizer" OFF)
|
||||
option(ENABLE_TSAN "Enable the thread data race sanitizer" OFF)
|
||||
option(BUILD_${PROJECT_NAME_UPPER}_EXAMPLES "Build example programs. This will build with CTest" OFF)
|
||||
option(BUILD_${PROJECT_NAME_UPPER}_TESTS "Build test programs. This will build with CTest" OFF)
|
||||
|
||||
set(CMAKE_CXX_STANDARD ${CMAKE_LANGUAGE_VERSION})
|
||||
|
||||
|
@ -40,33 +94,30 @@ file(GLOB_RECURSE PROJECT_BUILD_FILES "${CMAKE_CURRENT_SOURCE_DIR}/src/*.cpp")
|
|||
|
||||
add_executable(${PROJECT_NAME} ${PROJECT_BUILD_FILES})
|
||||
|
||||
target_compile_options(${PROJECT_NAME} PRIVATE -Wall -Wextra -Weverything -Wpedantic -Wno-comment)
|
||||
target_link_options(${PROJECT_NAME} PRIVATE -Wall -Wextra -Weverything -Wpedantic -Wno-comment)
|
||||
compile_options(${PROJECT_NAME})
|
||||
|
||||
${LINKS}
|
||||
|
||||
if (${ENABLE_ADDRSAN} MATCHES ON)
|
||||
target_compile_options(${PROJECT_NAME} PRIVATE -fsanitize=address)
|
||||
target_link_options(${PROJECT_NAME} PRIVATE -fsanitize=address)
|
||||
endif ()
|
||||
if (${BUILD_${PROJECT_NAME_UPPER}_EXAMPLES})
|
||||
|
||||
if (${ENABLE_UBSAN} MATCHES ON)
|
||||
target_compile_options(${PROJECT_NAME} PRIVATE -fsanitize=undefined)
|
||||
target_link_options(${PROJECT_NAME} PRIVATE -fsanitize=undefined)
|
||||
endif ()
|
||||
endif()
|
||||
|
||||
if (${ENABLE_TSAN} MATCHES ON)
|
||||
target_compile_options(${PROJECT_NAME} PRIVATE -fsanitize=thread)
|
||||
target_link_options(${PROJECT_NAME} PRIVATE -fsanitize=thread)
|
||||
endif ()
|
||||
if (BUILD_${PROJECT_NAME_UPPER}_TESTS)
|
||||
|
||||
endif()
|
||||
"""
|
||||
|
||||
cmake_lib_default_text = """cmake_minimum_required(VERSION ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION})
|
||||
|
||||
${MACROS}
|
||||
|
||||
project(${PROJECT_NAME})
|
||||
|
||||
option(ENABLE_ADDRSAN "Enable the address sanitizer" OFF)
|
||||
option(ENABLE_UBSAN "Enable the ub sanitizer" OFF)
|
||||
option(ENABLE_TSAN "Enable the thread data race sanitizer" OFF)
|
||||
option(BUILD_${PROJECT_NAME_UPPER}_EXAMPLES "Build example programs. This will build with CTest" OFF)
|
||||
option(BUILD_${PROJECT_NAME_UPPER}_TESTS "Build test programs. This will build with CTest" OFF)
|
||||
|
||||
set(CMAKE_CXX_STANDARD ${CMAKE_LANGUAGE_VERSION})
|
||||
|
||||
|
@ -77,25 +128,17 @@ file(GLOB_RECURSE PROJECT_BUILD_FILES "${CMAKE_CURRENT_SOURCE_DIR}/src/*.cpp")
|
|||
|
||||
add_library(${PROJECT_NAME}${CMAKE_LIBRARY_TYPE} ${PROJECT_BUILD_FILES})
|
||||
|
||||
target_compile_options(${PROJECT_NAME} PRIVATE -Wall -Wextra -Weverything -Wpedantic -Wno-comment)
|
||||
target_link_options(${PROJECT_NAME} PRIVATE -Wall -Wextra -Weverything -Wpedantic -Wno-comment)
|
||||
compile_options(${PROJECT_NAME})
|
||||
|
||||
${LINKS}
|
||||
|
||||
if (${ENABLE_ADDRSAN} MATCHES ON)
|
||||
target_compile_options(${PROJECT_NAME} PRIVATE -fsanitize=address)
|
||||
target_link_options(${PROJECT_NAME} PRIVATE -fsanitize=address)
|
||||
endif ()
|
||||
if (${BUILD_${PROJECT_NAME_UPPER}_EXAMPLES})
|
||||
|
||||
if (${ENABLE_UBSAN} MATCHES ON)
|
||||
target_compile_options(${PROJECT_NAME} PRIVATE -fsanitize=undefined)
|
||||
target_link_options(${PROJECT_NAME} PRIVATE -fsanitize=undefined)
|
||||
endif ()
|
||||
endif()
|
||||
|
||||
if (${ENABLE_TSAN} MATCHES ON)
|
||||
target_compile_options(${PROJECT_NAME} PRIVATE -fsanitize=thread)
|
||||
target_link_options(${PROJECT_NAME} PRIVATE -fsanitize=thread)
|
||||
endif ()
|
||||
if (BUILD_${PROJECT_NAME_UPPER}_TESTS)
|
||||
|
||||
endif()
|
||||
"""
|
||||
|
||||
default_main_file = """#include <iostream>
|
||||
|
@ -217,11 +260,13 @@ if args.create_git:
|
|||
open_process(["git", "remote", "add", "origin", github_url + project_name])
|
||||
open_process(["git", "branch", "--set-upstream-to=origin/main", "main"])
|
||||
|
||||
cmake_text = cmake_text.replace("${MACROS}", cmake_macros)
|
||||
cmake_text = cmake_text.replace("${SUB_DIRS}", sub_dirs)
|
||||
cmake_text = cmake_text.replace("${LINKS}", links)
|
||||
cmake_text = cmake_text.replace("${CMAKE_MAJOR_VERSION}", cmake_major)
|
||||
cmake_text = cmake_text.replace("${CMAKE_MINOR_VERSION}", cmake_minor)
|
||||
cmake_text = cmake_text.replace("${PROJECT_NAME}", project_name)
|
||||
cmake_text = cmake_text.replace("${PROJECT_NAME_UPPER}", project_name.upper().replace("-", "_"))
|
||||
cmake_text = cmake_text.replace("${CMAKE_LANGUAGE_VERSION}", cpp_version)
|
||||
|
||||
with open("CMakeLists.txt", "w") as f:
|
||||
|
|
Loading…
Reference in New Issue