Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 17 additions & 17 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,26 +12,26 @@ on:
- cron: '0 0 1 * *'

jobs:
# LinuxBuild:
# runs-on: ubuntu-latest
LinuxBuild:
runs-on: ubuntu-latest

# steps:
# # install deps
# - uses: actions/checkout@v5
# - name: install debian-packaged dependencies
# run: sudo apt install -y libwxgtk3.2-dev libboost-graph1.83.0 libboost-serialization1.83.0 libboost-all-dev
steps:
# install deps
- uses: actions/checkout@v5
- name: install debian-packaged dependencies
run: sudo apt install -y libwxgtk3.2-dev libboost-graph1.83.0 libboost-serialization1.83.0 libboost-all-dev

# # build
# - name: build netlist-viewer
# run: cd NetlistViewer/build/linux && make
# build
- name: build netlist-viewer
run: cd NetlistViewer/build/linux && make

# # save binary
# - name: save built binary
# uses: actions/upload-artifact@v4
# with:
# name: NetlistViewer, Linux x86_64
# path: NetlistViewer/build/linux/NetlistViewer
# if-no-files-found: error
# save binary
- name: save built binary
uses: actions/upload-artifact@v4
with:
name: NetlistViewer, Linux x86_64
path: NetlistViewer/build/linux/NetlistViewer
if-no-files-found: error

WindowsBuild:
runs-on: windows-latest
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ NetlistViewer/build/win/.vs
NetlistViewer/build/win/*.pdb
NetlistViewer/distrib/*.exe
vcpkg_installed/
.vs/
1 change: 0 additions & 1 deletion NetlistViewer/src/devices.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
// Purpose: supported SPICE devices
// Author: Francesco Montorsi
// Created: Oct 2017
// RCS-ID: $Id: netlist.h 32 2017-10-14 09:24:41Z frm $
// Copyright: (c) 2010 Francesco Montorsi
// Licence: GPL licence
/////////////////////////////////////////////////////////////////////////////
Expand Down
1 change: 0 additions & 1 deletion NetlistViewer/src/netlist.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
// Purpose: SPICE netlist parsing & processing
// Author: Francesco Montorsi
// Created: 30/05/2010
// RCS-ID: $Id$
// Copyright: (c) 2010 Francesco Montorsi
// Licence: GPL licence
/////////////////////////////////////////////////////////////////////////////
Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,16 @@ D1 OUT 0 DIODEstd

You can download binaries from [Github releases](https://github.com/f18m/netlist-viewer/releases).
These binaries are not garantueed to work on your system.

## Windows

Note that if NetListViewer fails to start after installing with the Windows Installer and complains
about DLL dependencies named `VCRUNTIME<something>.dll`, it means that your Windows installation
is lacking the VC++ redistributable package.
You can install the latest VC Redistributable package following [https://vcredist.com/quick/](https://vcredist.com/quick/).

## Linux

A better way to distribute applications for Linux would be using [Flatpak](https://github.com/f18m/netlist-viewer/issues/6).
If you are interested in such work, please open an issue/PR.

Expand Down
Loading