From 1f483baf37359032ca3224a5d07853aaf725def4 Mon Sep 17 00:00:00 2001 From: Rr42 Date: Mon, 4 Jun 2018 15:25:44 +0530 Subject: Commented all GUI code for core test --- ldmicro/CMakeLists.txt | 45 +++++++++++++++++++++++++++++++++++++++------ 1 file changed, 39 insertions(+), 6 deletions(-) (limited to 'ldmicro/CMakeLists.txt') diff --git a/ldmicro/CMakeLists.txt b/ldmicro/CMakeLists.txt index 5486fec..0868d83 100644 --- a/ldmicro/CMakeLists.txt +++ b/ldmicro/CMakeLists.txt @@ -60,10 +60,43 @@ IF(UNIX) ## Dummy compile and install to test linuxUI ## to compile LDmicro uncomment the below 2 line2 - #add_executable (LDMicro ldmicro.cpp)# miscutil.cpp draw_outputdev.cpp) - # install (TARGETS LDMicro DESTINATION bin) - add_executable (testMain testMain.cpp) - target_link_libraries (testMain LinuxUI) - target_link_libraries (testMain FreezeLD) - install (TARGETS testMain DESTINATION bin) + set (COMPILE_CPP_SOURCES windows.cpp + #naminglist.cpp + #componentimages.cpp + #componentlist.cpp + #advanceddialog.cpp + arduino.cpp + avr.cpp + pic16.cpp + interpreted.cpp + ansic.cpp + compilecommon.cpp + intcode.cpp + lang.cpp + miscutil.cpp + iolist.cpp + #confdialog.cpp + #lutdialog.cpp + #resetdialog.cpp + #simpledialog.cpp + #coildialog.cpp + #contactsdialog.cpp + #commentdialog.cpp + #simulate.cpp + loadsave.cpp + undoredo.cpp + circuit.cpp + draw_outputdev.cpp + #draw.cpp + schematic.cpp + #helpdialog.cpp + maincontrols.cpp + ldmicro.cpp) + + add_executable (LDMicro ${COMPILE_CPP_SOURCES})#windows.cpp arduino.cpp avr.cpp pic16.cpp interpreted.cpp ansic.cpp lang.cpp miscutil.cpp circuit.cpp draw_outputdev.cpp ldmicro.cpp + install (TARGETS LDMicro DESTINATION bin) + #add_executable (testMain testMain.cpp) + target_link_libraries (LDMicro LinuxUI) + target_link_libraries (LDMicro FreezeLD) + #install (TARGETS testMain DESTINATION bin) ENDIF(UNIX) -- cgit From 7dbf07b87362bb883ce7d950371a6e5c1f355dd7 Mon Sep 17 00:00:00 2001 From: Rr42 Date: Tue, 5 Jun 2018 17:26:16 +0530 Subject: Added heap meamory handling (HeapCreate, HeapAlloc and HeepFree) --- ldmicro/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ldmicro/CMakeLists.txt') diff --git a/ldmicro/CMakeLists.txt b/ldmicro/CMakeLists.txt index 0868d83..9af4450 100644 --- a/ldmicro/CMakeLists.txt +++ b/ldmicro/CMakeLists.txt @@ -93,7 +93,7 @@ IF(UNIX) maincontrols.cpp ldmicro.cpp) - add_executable (LDMicro ${COMPILE_CPP_SOURCES})#windows.cpp arduino.cpp avr.cpp pic16.cpp interpreted.cpp ansic.cpp lang.cpp miscutil.cpp circuit.cpp draw_outputdev.cpp ldmicro.cpp + add_executable (LDMicro ${COMPILE_CPP_SOURCES}) install (TARGETS LDMicro DESTINATION bin) #add_executable (testMain testMain.cpp) target_link_libraries (LDMicro LinuxUI) -- cgit From 3333e7072ed134e381fa084f46d916c549cfc815 Mon Sep 17 00:00:00 2001 From: Rr42 Date: Wed, 6 Jun 2018 13:25:11 +0530 Subject: Removed AdvancedSimulation files --- ldmicro/CMakeLists.txt | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'ldmicro/CMakeLists.txt') diff --git a/ldmicro/CMakeLists.txt b/ldmicro/CMakeLists.txt index 9af4450..8c568fa 100644 --- a/ldmicro/CMakeLists.txt +++ b/ldmicro/CMakeLists.txt @@ -60,11 +60,7 @@ IF(UNIX) ## Dummy compile and install to test linuxUI ## to compile LDmicro uncomment the below 2 line2 - set (COMPILE_CPP_SOURCES windows.cpp - #naminglist.cpp - #componentimages.cpp - #componentlist.cpp - #advanceddialog.cpp + set (COMPILE_CPP_SOURCES #naminglist.cpp arduino.cpp avr.cpp pic16.cpp @@ -95,8 +91,8 @@ IF(UNIX) add_executable (LDMicro ${COMPILE_CPP_SOURCES}) install (TARGETS LDMicro DESTINATION bin) - #add_executable (testMain testMain.cpp) target_link_libraries (LDMicro LinuxUI) target_link_libraries (LDMicro FreezeLD) + #add_executable (testMain testMain.cpp) #install (TARGETS testMain DESTINATION bin) ENDIF(UNIX) -- cgit