User forums > General (but related to Code::Blocks)

New Plugin: wxCrafter Integration with CodeBlocks

<< < (4/5) > >>

eranif:

--- Quote from: stahta01 on June 03, 2014, 03:45:13 pm ---Anyone succeed in downloading the CB 13.12 plugin?

I am have issues; but, my internet is sometimes poor.

Tim S.


--- End quote ---
Thanks for reporting this, I have updated the link

Eran

MortenMacFly:
Well I tried to compile this plugin but I failed miserably. :'(

First f all there is no C::B project file... so I installed CodeLite and opened the workspace. But unfortunately it tells me it cannot find the reference to the clang compiler which would be wrong anyways - it should use MinGW as C::B is compiled using MinGW, too.

I am not that deep in CodeLite to know what to do. Do I need clang? My experience with clang on Windows is that its not working unless you are using Visual Studio. Can you provide some hints what to do on a Windows platform, please?

MortenMacFly:

--- Quote from: MortenMacFly on June 12, 2014, 09:37:50 am ---Well I tried to compile this plugin but I failed miserably. :'(

--- End quote ---
OK - I managed to create a C::B project file myself. (If you are interested I can provide it to you).

However, the plugin is integrated, I can start the wizard to create a new project, I see the wxCrafter tab but then nothing happens. I cannot add any wx element (like wxFrame). There is also no error message - just nothing happens. I also don't see an option to setup a path to wxCrafter - I believe this might be needed?!

eranif:

--- Quote ---I also don't see an option to setup a path to wxCrafter - I believe this might be needed?!
--- End quote ---
Sorry for the long silence, been busy in the last few days...

the plugin should be reading the path to wxCrafter from registry, unless you don't have the new version (you will need the latest wxCrafter 1.5)


--- Code: ---        wxRegKey key(wxRegKey::HKLM, wxT("Software\\wxCrafter\\settings"));
        if ( !key.QueryValue(wxT("InstallPath"), wxcrafterPath) ) {
            // FIXME :: report an error
            return false;
            
        } else {
            wxFileName fnWxc(wxcrafterPath, wxT("wxcrafter.exe"));
            fnWxc.AppendDir(wxT("Standalone"));
            wxcrafterPath = fnWxc.GetFullPath();
        }

--- End code ---

As you can see, I have left a "FIXME" there :)

Try downloading this one ( I assume that you are using Windows )
http://codelite.org/downloads/wxCrafter/wxCrafterDownloads.php?windows

FYI: The C::B plugin installer that I have uploaded in my earlier posts also includes wxCrafter standalone bundled

Eran

MortenMacFly:

--- Quote from: eranif on June 12, 2014, 10:04:30 pm ---FYI: The C::B plugin installer that I have uploaded in my earlier posts also includes wxCrafter standalone bundled

--- End quote ---
OK, but I would like to use it for trunk, so this installer is of no help.

Additionally as I have all my S/W portable the registry entry is missing. I'll try what happens if I create it. On the long run it would be nice to have an option to set wxCrafter explicitly. :-)

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version