Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • gamedev/fggl
  • onuralpsezer/fggl
2 results
Show changes
......@@ -8,25 +8,20 @@ set( IMGUI_SOURCES
src/imgui_tables.cpp
src/imgui_widgets.cpp
)
file(GLOB_RECURSE IMGUI_HEADERS "include/*.h")
add_library(imgui STATIC ${IMGUI_SOURCES} )
add_library(imgui STATIC ${IMGUI_SOURCES} ${IMGUI_HEADERS})
set_property(TARGET imgui PROPERTY POSITION_INDEPENDENT_CODE ON)
set_target_properties(imgui PROPERTIES PUBLIC_HEADER "${IMGUI_HEADERS}" )
target_include_directories( imgui
PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}/include>
$<INSTALL_INTERFACE:include/fggl/imgui>
)
install(
FILES
include/imconfig.h
include/imgui.h
include/imgui_internal.h
include/imstb_rectpack.h
include/imstb_textedit.h
include/imstb_truetype.h
DESTINATION
${CMAKE_INSTALL_INCLUDEDIR}/fggl/imgui
)
install( TARGETS imgui EXPORT fgglTargets )
\ No newline at end of file
include(GNUInstallDirs)
install(TARGETS imgui
EXPORT fgglTargets
PUBLIC_HEADER
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/fggl/imgui
)
\ No newline at end of file