Enable GITHUB as default, include typeinfo into kiway_holder.cpp
This commit is contained in:
parent
ab30fba0ab
commit
8fc1e38271
|
@ -82,7 +82,7 @@ mark_as_advanced( KICAD_SKIP_BOOST ) # Normal builders should build Boost.
|
|||
# when not defined by user, the default is python.exe under Windows and python2 for others
|
||||
# python binary file should be is exec path.
|
||||
|
||||
option( BUILD_GITHUB_PLUGIN "Build the GITHUB_PLUGIN for pcbnew." OFF )
|
||||
option( BUILD_GITHUB_PLUGIN "Build the GITHUB_PLUGIN for pcbnew." ON )
|
||||
|
||||
# This can be set to a custom name to brag about a particular branch in the "About" dialog:
|
||||
set( KICAD_REPO_NAME "product" CACHE STRING "Name of the tree from which this build came." )
|
||||
|
|
|
@ -2,6 +2,10 @@
|
|||
#include <kiway.h>
|
||||
#include <kiway_player.h>
|
||||
|
||||
#if defined(DEBUG)
|
||||
#include <typeinfo>
|
||||
#endif
|
||||
|
||||
|
||||
PROJECT& KIWAY_HOLDER::Prj() const
|
||||
{
|
||||
|
@ -26,4 +30,3 @@ void KIWAY_HOLDER::SetKiway( wxWindow* aDest, KIWAY* aKiway )
|
|||
|
||||
m_kiway = aKiway;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue