Skip to content

Build for linux does not copy resources folder content #37

@sh1l0n

Description

@sh1l0n

In the build.sh script the app-bundle is generated only for MacOSX devices but if we compile from Linux we also want the resources.
So maybe we need to add an else condition in that script. The modified build.sh could be something as the next

gtk=`echo .build/checkouts/SwiftGtk*/Sources/Gtk/Gtk-3.0.swift`
[ -e $gtk ] || ./generate-wrapper.sh
swift build $CCFLAGS $LINKFLAGS "$@"
if [ `uname` = "Darwin" ]; then
	. ./app-bundle.sh
else
	cp -r $RESOURCES_DIR/* $BUILD_BIN/ 	
fi

I found the problem while trying to load css file from resources throught the next function:

func readCssFile(forResource: String) {
    if let fileURL = Bundle.main.url(forResource: forResource, withExtension: "css") { 
        if let fileContents = try? String(contentsOf: fileURL) {
            if let screen = ScreenRef.getDefault(), let css = try? CSSProvider(from: fileContents) {
                screen.add(provider: css, priority: STYLE_PROVIDER_PRIORITY_APPLICATION)
            }
        }
    }
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions