Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,8 @@ tools/nsc/bin/*
*/__pycache__/*
__pycache__/*
*.pyc
Testing/
nsc_cache_lzma/
nsc_cache_*/
_tmp/

5 changes: 3 additions & 2 deletions 3rdparty/boost/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -120,15 +120,16 @@ endforeach()
# include will lead to ABI mismatch hence we update the target and let inherit options
target_compile_definitions(boost_wave
PUBLIC BOOST_WAVE_ENABLE_COMMANDLINE_MACROS=1
PUBLIC BOOST_WAVE_SUPPORT_PRAGMA_ONCE=0
PUBLIC BOOST_WAVE_SUPPORT_PRAGMA_ONCE=1
PUBLIC BOOST_WAVE_EMIT_PRAGMA_DIRECTIVES=1
PUBLIC BOOST_WAVE_SERIALIZATION=0
PUBLIC BOOST_WAVE_SUPPORT_INCLUDE_NEXT=0
PUBLIC BOOST_WAVE_USE_STRICT_LEXER=0

# threading option: https://github.com/boostorg/wave/issues/237#issuecomment-2710251773
PUBLIC BOOST_WAVE_SUPPORT_THREADING=0
)

set(NBL_BOOST_TARGETS
${NBL_BOOST_TARGETS}
PARENT_SCOPE)
PARENT_SCOPE)
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ project(Nabla
LANGUAGES CXX C
)
enable_language(C CXX ASM ASM_NASM)
enable_testing()

include(GNUInstallDirs)
include(CMakePackageConfigHelpers)
Expand Down
Loading
Loading