From 99c7d7cfdf0dbfc66135e4eb75b0f172479c78c8 Mon Sep 17 00:00:00 2001 From: Eric Mellino Date: Tue, 9 Oct 2018 00:48:03 -0700 Subject: [PATCH] Remove the "lib" prefix in CMakeLists.txt. --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 59322f5..a5f4cf1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,10 +20,11 @@ endif(WIN32) #add library and link add_library(cimgui SHARED ${IMGUI_SOURCES}) target_link_libraries(cimgui ${IMGUI_LIBRARIES}) +set_target_properties(cimgui PROPERTIES PREFIX "") #install install(TARGETS cimgui RUNTIME DESTINATION . LIBRARY DESTINATION . #ARCHIVE DESTINATION lib - ) \ No newline at end of file + )