Code::Blocks Forums

User forums => Help => Topic started by: codinglexernewbie on April 10, 2022, 12:45:47 am

Title: trouble using imgui
Post by: codinglexernewbie on April 10, 2022, 12:45:47 am
I'm trying to install imgui onto my project, but I keep getting errors like this ( how am I  doing it wrong?) :
Title: Re: trouble using imgui
Post by: codinglexernewbie on April 10, 2022, 12:49:20 am
is the way I am downloading libraries wrong?
Title: Re: trouble using imgui
Post by: AndrewCot on April 10, 2022, 02:17:52 am
Have a read of this:http://forums.codeblocks.org/index.php/topic,9996.0.html
Title: Re: trouble using imgui
Post by: codinglexernewbie on April 10, 2022, 06:28:48 am
@AndrewCot so which forums would be appropriate for this?
Title: Re: trouble using imgui
Post by: AndrewCot on April 10, 2022, 08:47:38 am
Did you read the page and follow the info on the page?
Title: Re: trouble using imgui
Post by: tigerbeard on April 10, 2022, 11:04:18 am
is the way I am downloading libraries wrong?
I think you did not set the search paths correctly in the build options.
Title: Re: trouble using imgui
Post by: jordi on April 11, 2022, 09:53:22 pm
In this case, where the imgui headers have been added to the project, changing
#include <imgui.h>
by
#include "imgui.h"
could work (I mean avoid the imgui.h error)
Title: Re: trouble using imgui
Post by: stahta01 on April 11, 2022, 10:57:31 pm
https://wiki.codeblocks.org/index.php/FAQ-Compiling_(general)#Q:_I_would_like_to_compile_a_project_using_some_non-standard_libraries._How_can_I_indicate_to_CodeBlocks_that_these_libraries_and_include_files_exist.3F (https://wiki.codeblocks.org/index.php/FAQ-Compiling_(general)#Q:_I_would_like_to_compile_a_project_using_some_non-standard_libraries._How_can_I_indicate_to_CodeBlocks_that_these_libraries_and_include_files_exist.3F)
Title: Re: trouble using imgui
Post by: stahta01 on April 11, 2022, 11:37:13 pm
If the problem is that your compiler does not support the imgui library; Then you need to ask on a website supporting either the imgui library or your compiler! The [Code::Blocks] website does not support any compiler! Including the compiler that was shipped with Code::Blocks on some windows installers. It also does not support the either imgui library or most other libraries.

Edit: How to continue if you still think your problem might be valid on this website. Post a build log!
https://wiki.codeblocks.org/index.php?title=FAQ-Compiling_%28general%29#Q:_How_do_I_report_a_compilation_problem_on_the_forums.3F (https://wiki.codeblocks.org/index.php?title=FAQ-Compiling_%28general%29#Q:_How_do_I_report_a_compilation_problem_on_the_forums.3F)

Tim S.