blob: 04c782ed0dec23f4df020bebb1bf091a8898c5e6 (
plain)
1
2
3
4
5
6
|
file(GLOB_RECURSE sources *.cpp)
add_executable(tmc_strings ${sources})
target_link_libraries(tmc_strings PRIVATE fmt::fmt nlohmann_json::nlohmann_json)
install(TARGETS tmc_strings RUNTIME DESTINATION bin)
|