mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-08-17 18:55:54 +08:00

project() call should always come AFTER cmake_minimum_required(). This caused various hard-to-debug issues when searching for packages. Newer CMake versions complain that compatibility is broken with v2.6
17 lines
288 B
CMake
17 lines
288 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
|
|
)
|