mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 21:37:35 +00:00
LibRegex: Change bytecode value type to a 64-bit value
To allow storing unicode ranges compactly; this is not utilised at the moment, but changing this later would've been significantly more difficult. Also fixes a few debug logs.
This commit is contained in:
parent
92ea9ed4a5
commit
3db8ced4c7
5 changed files with 19 additions and 20 deletions
|
@ -1,10 +1,9 @@
|
|||
file(GLOB TEST_SOURCES CONFIGURE_DEPENDS "*.cpp")
|
||||
file(GLOB REGEX_SOURCES CONFIGURE_DEPENDS "../*.cpp")
|
||||
file(GLOB C_REGEX_SOURCES CONFIGURE_DEPENDS "../C/*.cpp")
|
||||
file(GLOB REGEX_SOURCES CONFIGURE_DEPENDS "../*.cpp" "../C/*.cpp")
|
||||
|
||||
foreach(source ${TEST_SOURCES})
|
||||
get_filename_component(name ${source} NAME_WE)
|
||||
add_executable(${name} ${source} ${REGEX_SOURCES} ${C_REGEX_SOURCES})
|
||||
add_executable(${name} ${source} ${REGEX_SOURCES})
|
||||
target_link_libraries(${name} LagomCore)
|
||||
add_test(
|
||||
NAME ${name}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue