From 08abe776a4cf16c9ab30724abd715cefa735edb6 Mon Sep 17 00:00:00 2001 From: Drew Galbraith Date: Mon, 26 Jun 2023 11:59:29 -0700 Subject: [PATCH] [yellowstone] Rename yellowstonestub to yellowstone_stub. --- sys/denali/CMakeLists.txt | 2 +- sys/yellowstone/CMakeLists.txt | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/denali/CMakeLists.txt b/sys/denali/CMakeLists.txt index 1655717..2ca3dfe 100644 --- a/sys/denali/CMakeLists.txt +++ b/sys/denali/CMakeLists.txt @@ -14,7 +14,7 @@ target_include_directories(denali target_link_libraries(denali glacier mammoth - yellowstonestub + yellowstone_stub ) set_target_properties(denali PROPERTIES diff --git a/sys/yellowstone/CMakeLists.txt b/sys/yellowstone/CMakeLists.txt index c05dc19..fe1082f 100644 --- a/sys/yellowstone/CMakeLists.txt +++ b/sys/yellowstone/CMakeLists.txt @@ -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}" )