[PATCH] D15938: [test-suite] Prevent timeit and fpcmp from being rebuilt every time make is called.
Matthias Braun via llvm-commits
llvm-commits at lists.llvm.org
Wed Jan 6 14:40:41 PST 2016
MatzeB accepted this revision.
MatzeB added a comment.
This revision is now accepted and ready to land.
My cmake-fu isn't that strong either. But using add_custom_command looks like the right thing to do. LGTM.
================
Comment at: tools/CMakeLists.txt:1
@@ -1,2 +1,2 @@
-add_executable(timeit-target timeit.c)
+add_executable(timeit-target ${CMAKE_CURRENT_SOURCE_DIR}/timeit.c)
----------------
Is this change necessary or just here by accident?
Repository:
rL LLVM
http://reviews.llvm.org/D15938
More information about the llvm-commits
mailing list