Files
fennec/metaprogramming/CMakeLists.txt
Medusa Slockbower 5e0dc78210 - Fixed some more compilation issues
- Added some more information to the licensing section of README.md
2025-07-10 08:48:00 -04:00

20 lines
453 B
CMake

cmake_minimum_required(VERSION 3.30)
project(fennec-metaprogramming)
set(CMAKE_CXX_STANDARD 23)
add_executable(fennec-metaprogramming main.cpp
float.h
integer.h)
add_custom_command(
OUTPUT .metaprogramming
COMMAND fennec-metaprogramming
WORKING_DIRECTORY "${PROJECT_SOURCE_DIR}/../include/fennec/lang"
COMMENT "Generating intrinsics"
VERBATIM
)
add_custom_target(
metaprogramming
DEPENDS .metaprogramming
)