Procházet zdrojové kódy

Remove generic executable name for a less generic one

crazy_things
Ludovic 'Archivist' Lagouardette před 1 rokem
rodič
revize
288d0b363b
1 změnil soubory, kde provedl 3 přidání a 3 odebrání
  1. +3
    -3
      CMakeLists.txt

+ 3
- 3
CMakeLists.txt Zobrazit soubor

@ -27,10 +27,10 @@ add_executable(ushell script_exe/main.cpp)
target_link_libraries(ushell PUBLIC UserScript)
include_directories(include)
add_executable(tests tests/lexer_test.cpp tests/parser_test.cpp)
target_link_libraries(tests PUBLIC UserScript Catch2::Catch2WithMain)
add_executable(userscript_tests tests/lexer_test.cpp tests/parser_test.cpp)
target_link_libraries(userscript_tests PUBLIC UserScript Catch2::Catch2WithMain)
catch_discover_tests(tests)
catch_discover_tests(userscript_tests)
function(add_script_test [testname filename resultname])
message("Added test: ${ARGV0}")

Načítá se…
Zrušit
Uložit