aboutsummaryrefslogtreecommitdiff
path: root/loader
diff options
context:
space:
mode:
authorMark Lobodzinski <mark@lunarg.com>2018-01-19 11:50:58 -0700
committerMark Lobodzinski <mark@lunarg.com>2018-01-22 11:16:43 -0700
commitc0400d47c79737bbf5b57fb25d5c9723fd027bec (patch)
tree5c1ef17de9f076bc67faf259f4b7cc6a68becfb4 /loader
parentc1e623330ad120d9c7a7be393886a91427cebfcd (diff)
downloadusermoji-c0400d47c79737bbf5b57fb25d5c9723fd027bec.tar.xz
cmake: Fix non-existant cmake variable
Specified cmake variable does not exist, caused problems in some out-of-source builds. Change-Id: I526117ef060efea40451752e5fe7bad1e7a5589e
Diffstat (limited to 'loader')
-rw-r--r--loader/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/loader/CMakeLists.txt b/loader/CMakeLists.txt
index f2bd1527..0def2a26 100644
--- a/loader/CMakeLists.txt
+++ b/loader/CMakeLists.txt
@@ -1,7 +1,7 @@
include_directories(
${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_CURRENT_BINARY_DIR}
- ${CMAKE_PROJECT_BINARY_DIR}
+ ${PROJECT_BINARY_DIR}
${CMAKE_BINARY_DIR}
)