[compiler-rt] r367450 - gn build: Add build files for compiler-rt/lib/profile

Nico Weber via llvm-commits llvm-commits at lists.llvm.org
Wed Jul 31 10:15:32 PDT 2019


Author: nico
Date: Wed Jul 31 10:15:32 2019
New Revision: 367450

URL: http://llvm.org/viewvc/llvm-project?rev=367450&view=rev
Log:
gn build: Add build files for compiler-rt/lib/profile

Differential Revision: https://reviews.llvm.org/D65518

Modified:
    compiler-rt/trunk/lib/profile/CMakeLists.txt

Modified: compiler-rt/trunk/lib/profile/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/profile/CMakeLists.txt?rev=367450&r1=367449&r2=367450&view=diff
==============================================================================
--- compiler-rt/trunk/lib/profile/CMakeLists.txt (original)
+++ compiler-rt/trunk/lib/profile/CMakeLists.txt Wed Jul 31 10:15:32 2019
@@ -64,7 +64,8 @@ set(PROFILE_SOURCES
   InstrProfilingPlatformOther.c
   InstrProfilingPlatformWindows.c
   InstrProfilingRuntime.cc
-  InstrProfilingUtil.c)
+  InstrProfilingUtil.c
+  )
 
 set(PROFILE_HEADERS
   InstrProfData.inc
@@ -72,10 +73,13 @@ set(PROFILE_HEADERS
   InstrProfilingInternal.h
   InstrProfilingPort.h
   InstrProfilingUtil.h
-  WindowsMMap.h)
+  WindowsMMap.h
+  )
 
 if(WIN32)
-    list(APPEND PROFILE_SOURCES WindowsMMap.c)
+  list(APPEND PROFILE_SOURCES
+    WindowsMMap.c
+    )
 endif()
 
 if(FUCHSIA OR UNIX)




More information about the llvm-commits mailing list