colobot/tools/cbot-graph/CMakeLists.txt

15 lines
324 B
CMake
Raw Normal View History

2023-08-22 20:01:24 +00:00
add_executable(CBot-CompileGraph
src/compile_graph.cpp
)
target_link_directories(CBot-CompileGraph PRIVATE
${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_CURRENT_BINARY_DIR}
)
target_link_libraries(CBot-CompileGraph PRIVATE CBot)
if(COLOBOT_LINT_BUILD)
add_fake_header_sources("test/cbot" CBot-CompileGraph)
endif()