21 lines
472 B
CMake
21 lines
472 B
CMake
cmake_minimum_required(VERSION 3.31)
|
|
project(bshell C)
|
|
|
|
find_package(Python COMPONENTS Interpreter REQUIRED)
|
|
|
|
execute_process(
|
|
COMMAND ${Python_EXECUTABLE}
|
|
${CMAKE_CURRENT_SOURCE_DIR}/tools/build-id.py
|
|
OUTPUT_VARIABLE bshell_version)
|
|
|
|
file(GLOB_RECURSE bshell_sources
|
|
bshell/*.c
|
|
bshell/*.h)
|
|
|
|
message(STATUS "B Shell version: ${bshell_version}")
|
|
|
|
add_executable(bshell ${bshell_sources})
|
|
|
|
target_compile_definitions(bshell PUBLIC
|
|
BSHELL_VERSION="${bshell_version}")
|