Browse Source

Updated projects to include resources

Ray 1 year ago
parent
commit
84f2588a4f

BIN
examples/raygui.ico


+ 27 - 0
examples/raygui.rc

@@ -0,0 +1,27 @@
+GLFW_ICON ICON "raygui.ico"
+
+1 VERSIONINFO
+FILEVERSION     4,0,0,0
+PRODUCTVERSION  4,0,0,0
+BEGIN
+  BLOCK "StringFileInfo"
+  BEGIN
+	//BLOCK "080904E4" 	// English UK
+    BLOCK "040904E4"	// English US
+    BEGIN
+	  //VALUE "CompanyName", "raylib technologies"
+      VALUE "FileDescription", "raygui application (www.raylib.com)"
+      VALUE "FileVersion", "4.0.0"
+      VALUE "InternalName", "raygui app"
+      VALUE "LegalCopyright", "(c) 2023 Ramon Santamaria (@raysan5)"
+      //VALUE "OriginalFilename", "raygui_app.exe"
+      VALUE "ProductName", "raygui app"
+      VALUE "ProductVersion", "4.0.0"
+    END
+  END
+  BLOCK "VarFileInfo"
+  BEGIN
+	//VALUE "Translation", 0x809, 1252	// English UK
+    VALUE "Translation", 0x409, 1252	// English US
+  END
+END

+ 3 - 0
projects/VS2022/examples/animation_curve.vcxproj

@@ -354,6 +354,9 @@
   <ItemGroup>
   <ItemGroup>
     <ClInclude Include="..\..\..\examples\animation_curve\gui_curve_editor.h" />
     <ClInclude Include="..\..\..\examples\animation_curve\gui_curve_editor.h" />
   </ItemGroup>
   </ItemGroup>
+  <ItemGroup>
+    <ResourceCompile Include="..\..\..\examples\raygui.rc" />
+  </ItemGroup>
   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
   <ImportGroup Label="ExtensionTargets">
   <ImportGroup Label="ExtensionTargets">
   </ImportGroup>
   </ImportGroup>

+ 3 - 0
projects/VS2022/examples/controls_test_suite.vcxproj

@@ -351,6 +351,9 @@
   <ItemGroup>
   <ItemGroup>
     <ClCompile Include="..\..\..\examples\controls_test_suite\controls_test_suite.c" />
     <ClCompile Include="..\..\..\examples\controls_test_suite\controls_test_suite.c" />
   </ItemGroup>
   </ItemGroup>
+  <ItemGroup>
+    <ResourceCompile Include="..\..\..\examples\raygui.rc" />
+  </ItemGroup>
   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
   <ImportGroup Label="ExtensionTargets">
   <ImportGroup Label="ExtensionTargets">
   </ImportGroup>
   </ImportGroup>

+ 3 - 0
projects/VS2022/examples/custom_file_dialog.vcxproj

@@ -354,6 +354,9 @@
   <ItemGroup>
   <ItemGroup>
     <ClInclude Include="..\..\..\examples\custom_file_dialog\gui_window_file_dialog.h" />
     <ClInclude Include="..\..\..\examples\custom_file_dialog\gui_window_file_dialog.h" />
   </ItemGroup>
   </ItemGroup>
+  <ItemGroup>
+    <ResourceCompile Include="..\..\..\examples\raygui.rc" />
+  </ItemGroup>
   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
   <ImportGroup Label="ExtensionTargets">
   <ImportGroup Label="ExtensionTargets">
   </ImportGroup>
   </ImportGroup>

+ 3 - 0
projects/VS2022/examples/image_exporter.vcxproj

@@ -351,6 +351,9 @@
   <ItemGroup>
   <ItemGroup>
     <ClCompile Include="..\..\..\examples\image_exporter\image_exporter.c" />
     <ClCompile Include="..\..\..\examples\image_exporter\image_exporter.c" />
   </ItemGroup>
   </ItemGroup>
+  <ItemGroup>
+    <ResourceCompile Include="..\..\..\examples\raygui.rc" />
+  </ItemGroup>
   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
   <ImportGroup Label="ExtensionTargets">
   <ImportGroup Label="ExtensionTargets">
   </ImportGroup>
   </ImportGroup>

+ 3 - 0
projects/VS2022/examples/image_importer_raw.vcxproj

@@ -351,6 +351,9 @@
   <ItemGroup>
   <ItemGroup>
     <ClCompile Include="..\..\..\examples\image_importer_raw\image_importer_raw.c" />
     <ClCompile Include="..\..\..\examples\image_importer_raw\image_importer_raw.c" />
   </ItemGroup>
   </ItemGroup>
+  <ItemGroup>
+    <ResourceCompile Include="..\..\..\examples\raygui.rc" />
+  </ItemGroup>
   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
   <ImportGroup Label="ExtensionTargets">
   <ImportGroup Label="ExtensionTargets">
   </ImportGroup>
   </ImportGroup>

+ 3 - 0
projects/VS2022/examples/portable_window.vcxproj

@@ -351,6 +351,9 @@
   <ItemGroup>
   <ItemGroup>
     <ClCompile Include="..\..\..\examples\portable_window\portable_window.c" />
     <ClCompile Include="..\..\..\examples\portable_window\portable_window.c" />
   </ItemGroup>
   </ItemGroup>
+  <ItemGroup>
+    <ResourceCompile Include="..\..\..\examples\raygui.rc" />
+  </ItemGroup>
   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
   <ImportGroup Label="ExtensionTargets">
   <ImportGroup Label="ExtensionTargets">
   </ImportGroup>
   </ImportGroup>

+ 3 - 0
projects/VS2022/examples/property_list.vcxproj

@@ -351,6 +351,9 @@
   <ItemGroup>
   <ItemGroup>
     <ClCompile Include="..\..\..\examples\property_list\property_list.c" />
     <ClCompile Include="..\..\..\examples\property_list\property_list.c" />
   </ItemGroup>
   </ItemGroup>
+  <ItemGroup>
+    <ResourceCompile Include="..\..\..\examples\raygui.rc" />
+  </ItemGroup>
   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
   <ImportGroup Label="ExtensionTargets">
   <ImportGroup Label="ExtensionTargets">
   </ImportGroup>
   </ImportGroup>

+ 3 - 0
projects/VS2022/examples/scroll_panel.vcxproj

@@ -351,6 +351,9 @@
   <ItemGroup>
   <ItemGroup>
     <ClCompile Include="..\..\..\examples\scroll_panel\scroll_panel.c" />
     <ClCompile Include="..\..\..\examples\scroll_panel\scroll_panel.c" />
   </ItemGroup>
   </ItemGroup>
+  <ItemGroup>
+    <ResourceCompile Include="..\..\..\examples\raygui.rc" />
+  </ItemGroup>
   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
   <ImportGroup Label="ExtensionTargets">
   <ImportGroup Label="ExtensionTargets">
   </ImportGroup>
   </ImportGroup>

+ 3 - 0
projects/VS2022/examples/style_selector.vcxproj

@@ -351,6 +351,9 @@
   <ItemGroup>
   <ItemGroup>
     <ClCompile Include="..\..\..\examples\style_selector\style_selector.c" />
     <ClCompile Include="..\..\..\examples\style_selector\style_selector.c" />
   </ItemGroup>
   </ItemGroup>
+  <ItemGroup>
+    <ResourceCompile Include="..\..\..\examples\raygui.rc" />
+  </ItemGroup>
   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
   <ImportGroup Label="ExtensionTargets">
   <ImportGroup Label="ExtensionTargets">
   </ImportGroup>
   </ImportGroup>