mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-23 14:44:19 -06:00
20 lines
No EOL
359 B
CMake
20 lines
No EOL
359 B
CMake
cmake_minimum_required(VERSION 2.8.12)
|
|
project(imgui)
|
|
|
|
add_library(imgui STATIC
|
|
imconfig.h
|
|
imgui.h
|
|
imgui_internal.h
|
|
imstb_rectpack.h
|
|
imstb_textedit.h
|
|
imstb_truetype.h
|
|
imgui_tables.cpp
|
|
imgui.cpp
|
|
imgui_demo.cpp
|
|
imgui_draw.cpp
|
|
imgui_widgets.cpp
|
|
)
|
|
|
|
if(Boost_FOUND)
|
|
include_directories(${Boost_INCLUDE_DIRS})
|
|
endif() |