Prefix program names with "ovni"

The "emu" and "dump" programs now are called "ovniemu" and "ovnidump".
This commit is contained in:
Rodrigo Arias 2021-11-15 17:38:15 +01:00
parent 5fed28bad8
commit 85c1666f90

View File

@ -53,7 +53,7 @@ add_library(ovni SHARED
target_include_directories(ovni PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) target_include_directories(ovni PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
add_executable(emu add_executable(ovniemu
chan.c chan.c
emu.c emu.c
emu_nosv.c emu_nosv.c
@ -67,7 +67,7 @@ add_executable(emu
prv.c prv.c
) )
add_executable(dump add_executable(ovnidump
dump.c dump.c
ovni.c ovni.c
parson.c parson.c
@ -90,5 +90,5 @@ add_executable(ovnisync ovnisync.c)
target_link_libraries(ovnisync m MPI::MPI_C) target_link_libraries(ovnisync m MPI::MPI_C)
install(TARGETS ovni LIBRARY) install(TARGETS ovni LIBRARY)
install(TARGETS emu dump ovni2prv ovnisync RUNTIME) install(TARGETS ovniemu ovnidump ovni2prv ovnisync RUNTIME)
install(FILES ovni.h DESTINATION include) install(FILES ovni.h DESTINATION include)