mirror of
https://github.com/arabine/open-story-teller.git
synced 2025-12-06 17:09:06 +01:00
16 lines
344 B
CMake
16 lines
344 B
CMake
cmake_minimum_required(VERSION 3.5)
|
|
|
|
project(ImGuiFileDialog)
|
|
|
|
add_library(ImGuiFileDialog STATIC
|
|
ImGuiFileDialog.cpp
|
|
ImGuiFileDialog.h
|
|
ImGuiFileDialogConfig.h
|
|
)
|
|
|
|
target_include_directories(ImGuiFileDialog PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
if(UNIX)
|
|
target_compile_options(ImGuiFileDialog PUBLIC -Wno-unknown-pragmas)
|
|
endif()
|