mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
6 lines
235 B
CMake
6 lines
235 B
CMake
add_executable( tools_files_filegraph filegraph.cpp )
|
|
set_target_properties( tools_files_filegraph PROPERTIES OUTPUT_NAME "filegraph" )
|
|
install( TARGETS tools_files_filegraph
|
|
RUNTIME DESTINATION bin
|
|
LIBRARY DESTINATION lib
|
|
)
|