Skip to content

Commit

Permalink
Remove quotes from cmake commands
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnDTill committed Aug 4, 2023
1 parent 435c33a commit b1e88f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ include_directories(${CONSTRUCT})
include_directories(${GEN})
include_directories(${COMMAND})

add_compile_definitions("$<$<CONFIG:Debug>:TYPESET_MEMORY_DEBUG>")
add_compile_definitions("$<$<CONFIG:Debug>:FORSCAPE_SEMANTIC_DEBUGGING>")
add_compile_definitions($<$<CONFIG:Debug>:TYPESET_MEMORY_DEBUG>)
add_compile_definitions($<$<CONFIG:Debug>:FORSCAPE_SEMANTIC_DEBUGGING>)
add_compile_definitions(EIGEN_NO_AUTOMATIC_RESIZING)
add_compile_definitions(BASE_TEST_DIR="../test/interpreter_scripts")
add_compile_definitions(alloc_except=noexcept)
Expand Down

0 comments on commit b1e88f6

Please sign in to comment.