Skip to content

Commit

Permalink
Rename mir-run to mir-bin-run in CMakeLists.txt.
Browse files Browse the repository at this point in the history
  • Loading branch information
vnmakarov committed May 10, 2024
1 parent d1f9970 commit 927e9d0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,11 @@ add_executable (c2m "c2mir/c2mir-driver.c")
target_include_directories(c2m PRIVATE ${PROJECT_SOURCE_DIR})
target_link_libraries(c2m mir ${CMAKE_DL_LIBS} )

# ------------------ MIR RUN ----------------------
# ---------------- MIR BIN RUN --------------------

add_executable (mir-run "mir-run.c")
target_include_directories (mir-run PRIVATE ${PROJECT_SOURCE_DIR})
target_link_libraries(mir-run mir ${CMAKE_DL_LIBS} )
add_executable (mir-bin-run "mir-bin-run.c")
target_include_directories (mir-bin-run PRIVATE ${PROJECT_SOURCE_DIR})
target_link_libraries(mir-bin-run mir ${CMAKE_DL_LIBS} )

# ------------------ MIR utils --------------------
add_executable (m2b "mir-utils/m2b.c")
Expand Down

0 comments on commit 927e9d0

Please sign in to comment.