Add header files to source file list in CMake
authorCharles Giessen <charles@lunarg.com>
Fri, 12 May 2023 22:21:18 +0000 (16:21 -0600)
committerCharles Giessen <46324611+charles-lunarg@users.noreply.github.com>
Mon, 29 May 2023 23:45:08 +0000 (17:45 -0600)
Gives a better experience for Visual Studio and XCode developers.

loader/CMakeLists.txt

index 98661ddd48f8f2b9d867568acffdaaf0f47ce63c..9a5cae74bf9601416a9e9f3e776b46a6955739b4 100644 (file)
@@ -97,17 +97,27 @@ endif()
 
 set(NORMAL_LOADER_SRCS
     allocation.c
+    allocation.h
     cJSON.c
+    cJSON.h
     debug_utils.c
+    debug_utils.h
     extension_manual.c
+    extension_manual.h
     loader_environment.c
+    loader_environment.h
     gpa_helper.c
+    gpa_helper.h
     loader.c
+    loader.h
     log.c
+    log.h
     terminator.c
     trampoline.c
     unknown_function_handling.c
+    unknown_function_handling.h
     wsi.c
+    wsi.h
     )
 
 if(WIN32)