This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Qucs Schematic 0.0.18> | |
<Properties> | |
<View=0,0,958,800,1,0,0> | |
<Grid=10,10,1> | |
<DataSet=vhdl_vector.dat> | |
<DataDisplay=vhdl_vector.dpl> | |
<OpenDisplay=0> | |
<Script=vhdl_vector.m> | |
<RunScript=0> | |
<showFrame=0> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Qucs Schematic 0.0.18> | |
<Properties> | |
<View=0,0,970,800,1,0,0> | |
<Grid=10,10,1> | |
<DataSet=full_adder.dat> | |
<DataDisplay=full_adder.dpl> | |
<OpenDisplay=0> | |
<Script=full_adder.m> | |
<RunScript=0> | |
<showFrame=0> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="ISO-8859-1"?> | |
<!DOCTYPE admst SYSTEM "admst.dtd"> | |
<admst version="2.3.0" xmlns:admst="http://mot-adms.sourceforge.net/xml-files/admst"> | |
<!-- loop over modules --> | |
<admst:for-each select="/module"> | |
<!-- print module name --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module test_if(); | |
real index, result1, result2, result3, i, j; | |
analog begin | |
if (index) result1 = 1+1; | |
if (index != 0 ) result2 = 1+2; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<snip> | |
building 'visual_common.cvisual' extension | |
creating build/temp.macosx-10.9-intel-2.7 | |
creating build/temp.macosx-10.9-intel-2.7/private | |
creating build/temp.macosx-10.9-intel-2.7/private/tmp | |
creating build/temp.macosx-10.9-intel-2.7/private/tmp/vpython-8pox | |
creating build/temp.macosx-10.9-intel-2.7/private/tmp/vpython-8pox/vpython-wx-master | |
creating build/temp.macosx-10.9-intel-2.7/private/tmp/vpython-8pox/vpython-wx-master/src | |
creating build/temp.macosx-10.9-intel-2.7/private/tmp/vpython-8pox/vpython-wx-master/src/core | |
creating build/temp.macosx-10.9-intel-2.7/private/tmp/vpython-8pox/vpython-wx-master/src/core/util |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <string> | |
#include <iostream> | |
#include <windows.h> | |
#include <vector> | |
using namespace std; | |
//Simple struct to return from lsfiles |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- a/Compiler/runtime/corbaimpl.cpp | |
+++ b/Compiler/runtime/corbaimpl.cpp | |
@@ -57,7 +57,7 @@ | |
PortableServer::POAManager_var mgr; | |
PortableServer::POA_var omcpoa; | |
CORBA::PolicyList pl; | |
-CORBA::Object_var ref; | |
+CORBA::Object_var mainref; | |
CORBA::String_var str; | |
#if defined(__MINGW32__) || defined(_MSC_VER) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- a/OMPlot/OMPlotGUI/OMPlotGUI.config.in | |
+++ b/OMPlot/OMPlotGUI/OMPlotGUI.config.in | |
@@ -2,5 +2,7 @@ QMAKE_CC = @CC@ | |
QMAKE_CXX = @CXX@ | |
QMAKE_LINK = @CXX@ | |
-LIBS += -lqwt@with_qwt_suffix@ | |
-INCLUDEPATH += @with_qwt@ | |
+QMAKEFEATURES += @with_qwt@/features | |
+CONFIG += qwt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- a/OMEdit/OMEditGUI/OMEdit.config.in | |
+++ b/OMEdit/OMEditGUI/OMEdit.config.in | |
@@ -7,7 +7,9 @@ | |
QMAKE_CXX = @CXX@ | |
QMAKE_LINK = @CXX@ | |
-LIBS += -L../../OMPlot/bin/ -lOMPlot @CORBALIBS@ -lqwt@with_qwt_suffix@ | |
-INCLUDEPATH += @with_qwt@ @CORBA_QMAKE_INCLUDES@ ../../OMPlot/OMPlotGUI | |
+QMAKEFEATURES += @with_qwt@/features | |
+CONFIG += qwt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/Makefile.in b/Makefile.in | |
index 9ea401d..c12b406 100644 | |
--- a/Makefile.in | |
+++ b/Makefile.in | |
@@ -78,7 +78,7 @@ omoptimbasis: mkbuilddirs | |
$(MAKE) -C OMOptimBasis/build -f Makefile.unix | |
endif | |
-qtclients: @OMNOTEBOOK@ omshell omedit omplot omoptim omoptimbasis | |
+qtclients: @OMNOTEBOOK@ omshell omedit omplot #omoptim omoptimbasis |