aboutsummaryrefslogtreecommitdiff
path: root/src/CMakeLists.txt
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@users.noreply.github.com>2024-06-21 12:49:45 -0400
committerGitHub <noreply@github.com>2024-06-21 12:49:45 -0400
commit77a0276d9f37bcf828c77f9bcc59ff945116274e (patch)
tree91cf7cb955798ad40718341172b0a8ffbc59a1f2 /src/CMakeLists.txt
parent931ee28eb9c5b5e3c2b0d3008f5f65d810dc9b0c (diff)
downloadstasis-77a0276d9f37bcf828c77f9bcc59ff945116274e.tar.gz
Rebrand OhMyCal (OMC) as STASIS (#7)
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r--src/CMakeLists.txt20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index f075102..c42bb0f 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -2,7 +2,7 @@ include_directories(${CMAKE_BINARY_DIR}/include)
include_directories(${CMAKE_SOURCE_DIR}/include)
include_directories(${PROJECT_BINARY_DIR})
-add_library(ohmycal STATIC
+add_library(stasis_core STATIC
globals.c
str.c
strlist.c
@@ -12,7 +12,7 @@ add_library(ohmycal STATIC
utils.c
system.c
download.c
- deliverable.c
+ delivery.c
recipe.c
relocation.c
wheel.c
@@ -24,13 +24,13 @@ add_library(ohmycal STATIC
junitxml.c
)
-add_executable(omc
- omc_main.c
+add_executable(stasis
+ stasis_main.c
)
-target_link_libraries(omc PRIVATE ohmycal)
-target_link_libraries(omc PUBLIC LibXml2::LibXml2)
-add_executable(omc_indexer
- omc_indexer.c
+target_link_libraries(stasis PRIVATE stasis_core)
+target_link_libraries(stasis PUBLIC LibXml2::LibXml2)
+add_executable(stasis_indexer
+ stasis_indexer.c
)
-target_link_libraries(omc_indexer PRIVATE ohmycal)
-install(TARGETS omc omc_indexer RUNTIME)
+target_link_libraries(stasis_indexer PRIVATE stasis_core)
+install(TARGETS stasis stasis_indexer RUNTIME)