You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
ChampionLeaguePointSolver/ChallengeLeaguePointSolver
sigonasr2, Sig, Sigo 3f855e6025 Add zip 1 year ago
..
C++/scripts Fixed cached loop 1 year ago
assets QuickGUI box selection fix 1 year ago
utils Fixed cached loop 1 year ago
C++ProjectTemplate Fixed cached loop 1 year ago
C++ProjectTemplate.html Fixed cached loop 1 year ago
C++ProjectTemplate.js Fixed cached loop 1 year ago
C++ProjectTemplate.wasm Fixed cached loop 1 year ago
ChallengeLeaguePointSolver.exe Brute force. 1 year ago
ChallengeLeaguePointSolver.vcxproj Working on sub-problem smart implementation. File reading and structure preparation. 1 year ago
ChallengeLeaguePointSolver.vcxproj.filters Working on sub-problem smart implementation. File reading and structure preparation. 1 year ago
ChallengeLeaguePointSolver_BruteForce.old Working on sub-problem smart implementation. File reading and structure preparation. 1 year ago
ChampionsLeaguePointSolver.cpp All done! 1 year ago
ChampionsLeaguePointSolver.data QuickGUI box selection fix 1 year ago
ChampionsLeaguePointSolver.html QuickGUI box selection fix 1 year ago
ChampionsLeaguePointSolver.js Segmented off loop progression 1 year ago
ChampionsLeaguePointSolver.wasm All done! 1 year ago
ChampionsLeaguePointSolver.zip Add zip 1 year ago
README.md Fixed cached loop 1 year ago
a.out Fixed cached loop 1 year ago
buildtemplate.html Fixed cached loop 1 year ago
dirtblock.png Fixed cached loop 1 year ago
index.html touchscreen support 1 year ago
olcPGEX_QuickGUI.h touchscreen support 1 year ago
output.txt Brute force. 1 year ago
pixelGameEngine.cpp QuickGUI box selection fix 1 year ago
pixelGameEngine.h Tab/Enter key navigation 1 year ago
pixelGameEngine.o Fixed cached loop 1 year ago
pixelGameEngine_wasm.o touchscreen support 1 year ago
sig Fixed cached loop 1 year ago

README.md

This repository contains general build scripts and pipelines for all languages that I incorporate in my projects. The goal is to provide an easy retrieval and update system for the project. Each script will be a shell script containing the following template:

    #Short description about what I do
    #Language[Folder]
    # #The script's code goes in here.
    # rm -Rf out/*
    # javac -Xlint:unchecked -cp ${PROJECT_DIR}/.. -d ${OUT_DIR} ${PROJECT_DIR}/*.java
    # printf "\n\n\nRunning Program...\n\n"
    # cd $OUT_DIR
    # java ${MAIN_CLASS} "$@"
    # ../scripts/clean.sh
    

Each language will be in the following structure:

    -<Language>
    --<scripts>
    ---[script files.sh]

The sig script will display by default any scripts in the scripts folder, therefore when creating a project, copy over the scripts folder of the desired language into your project then the sig script handles the rest appropriately. If your project requires multiple languages and build setups, then you can use the sig2 command, which has an additional parameter to specify the language when running it. When setting up a multi-language setup, you'll just copy the entire folder to include the programming language itself. So a multi-language project structure may look something like this:

    -C
    --scripts
    ---build.sh
    ---clean.sh
    ---make.sh
    -Java
    --scripts
    ---build.sh
    ---clean.sh
    ---jar.sh