We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 016384d commit 78d7458Copy full SHA for 78d7458
1 file changed
CMakeLists.txt
@@ -0,0 +1,13 @@
1
+cmake_minimum_required(VERSION 3.1)
2
+
3
+project(ImGuiFileDialog)
4
5
+add_library(ImGuiFileDialog
6
+ ImGuiFileDialog.cpp
7
+ ImGuiFileDialog.h
8
+)
9
10
+target_link_libraries(ImGuiFileDialog imgui)
11
12
+target_include_directories(ImGuiFileDialog PUBLIC
13
+ ${CMAKE_CURRENT_SOURCE_DIR})
0 commit comments