diff options
author | Mike Danes <onemihaid@hotmail.com> | 2016-01-10 16:04:05 +0200 |
---|---|---|
committer | Mike Danes <onemihaid@hotmail.com> | 2016-01-10 16:04:05 +0200 |
commit | d2fb8cb758c1a1ae84031178ba96310701beff65 (patch) | |
tree | e2182885d5aa166e950cd6acc7814d36f2810169 /src/debug/di | |
parent | 2a52c91242ca3010803e85f5857b977f470a0510 (diff) | |
download | coreclr-d2fb8cb758c1a1ae84031178ba96310701beff65.tar.gz coreclr-d2fb8cb758c1a1ae84031178ba96310701beff65.tar.bz2 coreclr-d2fb8cb758c1a1ae84031178ba96310701beff65.zip |
Use ARCH_SOURCES_DIR consistently
Some places already use ARCH_SOURCES_DIR for things like include_directories but others test the platform/arch variables to figure out the dir. Use ARCH_SOURCES_DIR everywhere for consistency.
Diffstat (limited to 'src/debug/di')
-rw-r--r-- | src/debug/di/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/debug/di/CMakeLists.txt b/src/debug/di/CMakeLists.txt index 17b737107d..925f356a3a 100644 --- a/src/debug/di/CMakeLists.txt +++ b/src/debug/di/CMakeLists.txt @@ -61,7 +61,7 @@ if(WIN32) if (CLR_CMAKE_PLATFORM_ARCH_AMD64) set(CORDBDI_SOURCES ${CORDBDI_SOURCES} - amd64/floatconversion.asm + ${ARCH_SOURCES_DIR}/floatconversion.asm ) endif() elseif(CLR_CMAKE_PLATFORM_UNIX) @@ -70,7 +70,7 @@ elseif(CLR_CMAKE_PLATFORM_UNIX) if(CLR_CMAKE_PLATFORM_ARCH_AMD64) set(CORDBDI_SOURCES ${CORDBDI_SOURCES} - amd64/floatconversion.S + ${ARCH_SOURCES_DIR}/floatconversion.S ) endif() |