mirror of https://github.com/zeldaret/tmc.git
9 lines
354 B
CMake
9 lines
354 B
CMake
file(GLOB_RECURSE sources *.cpp)
|
|
|
|
add_executable(asset_processor ${sources})
|
|
target_include_directories(asset_processor PRIVATE .)
|
|
target_link_libraries(asset_processor PRIVATE project_settings)
|
|
target_link_libraries(asset_processor PRIVATE fmt::fmt nlohmann_json::nlohmann_json filesystem util)
|
|
|
|
install(TARGETS asset_processor RUNTIME DESTINATION bin)
|