diff --git a/interfaces/tests/reals/CMakeLists.txt b/interfaces/tests/reals/CMakeLists.txt index ea03bd4..5c68fd0 100644 --- a/interfaces/tests/reals/CMakeLists.txt +++ b/interfaces/tests/reals/CMakeLists.txt @@ -3,13 +3,13 @@ cmake_minimum_required(VERSION 2.8.11) -set(reals_interface_h_files +set(reals_pal_interface_h_files real_threadapi.h real_threadapi_renames.h ) if(WIN32) -set(reals_interface_h_files ${reals_interface_h_files} +set(reals_pal_interface_h_files ${reals_pal_interface_h_files} real_interlocked_hl.h real_interlocked_hl_renames.h real_srw_lock.h @@ -22,6 +22,6 @@ set(reals_interface_h_files ${reals_interface_h_files} else() endif() -add_library(reals_interface INTERFACE) -target_include_directories(reals_interface INTERFACE ${CMAKE_CURRENT_LIST_DIR}) -target_link_libraries(reals_interface INTERFACE azure_c_logging pal_common) +add_library(reals_pal_interface INTERFACE) +target_include_directories(reals_pal_interface INTERFACE ${CMAKE_CURRENT_LIST_DIR}) +target_link_libraries(reals_pal_interface INTERFACE azure_c_logging pal_common) diff --git a/linux/tests/reals_linux/CMakeLists.txt b/linux/tests/reals_linux/CMakeLists.txt index 233208f..d884f0e 100644 --- a/linux/tests/reals_linux/CMakeLists.txt +++ b/linux/tests/reals_linux/CMakeLists.txt @@ -9,4 +9,4 @@ set(reals_linux_c_files include_directories(${CMAKE_CURRENT_LIST_DIR}/../../src) add_library(reals_linux ${reals_linux_c_files}) -target_link_libraries(reals_linux reals_interface) +target_link_libraries(reals_linux reals_pal_interface) diff --git a/win32/tests/reals_win32/CMakeLists.txt b/win32/tests/reals_win32/CMakeLists.txt index 0d47b26..76aa96a 100644 --- a/win32/tests/reals_win32/CMakeLists.txt +++ b/win32/tests/reals_win32/CMakeLists.txt @@ -14,4 +14,4 @@ set(reals_win32_c_files include_directories(${CMAKE_CURRENT_LIST_DIR}/../../src) add_library(reals_win32 ${reals_win32_c_files}) -target_link_libraries(reals_win32 reals_interface) +target_link_libraries(reals_win32 reals_pal_interface)