[yellowstone] Rename yellowstonestub to yellowstone_stub.

This commit is contained in:
Drew Galbraith 2023-06-26 11:59:29 -07:00
parent 3c62ad8719
commit 08abe776a4
2 changed files with 4 additions and 4 deletions

View File

@ -14,7 +14,7 @@ target_include_directories(denali
target_link_libraries(denali
glacier
mammoth
yellowstonestub
yellowstone_stub
)
set_target_properties(denali PROPERTIES

View File

@ -19,15 +19,15 @@ set_target_properties(yellowstone PROPERTIES
)
add_library(yellowstonestub
add_library(yellowstone_stub
stub/yellowstone_stub.cpp
)
target_include_directories(yellowstonestub
target_include_directories(yellowstone_stub
PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}
PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/include")
set_target_properties(yellowstonestub PROPERTIES
set_target_properties(yellowstone_stub PROPERTIES
COMPILE_FLAGS "${CMAKE_CXX_FLAGS} ${BASE_COMPILE_FLAGS}"
LINK_FLAGS "${CMAKE_EXE_LINK_FLAGS} ${BASE_LINK_FLAGS}"
)