mirror of
https://github.com/zeldaret/tmc
synced 2026-07-01 04:10:16 -04:00
7 lines
208 B
CMake
Vendored
7 lines
208 B
CMake
Vendored
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)
|