Skip to content

Commit

Permalink
version 1.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
pjumppanen authored and cran-robot committed Apr 30, 2021
0 parents commit 33f51c7
Show file tree
Hide file tree
Showing 21 changed files with 2,925 additions and 0 deletions.
22 changes: 22 additions & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Package: BuildSys
Type: Package
Title: System for Building and Debugging C/C++ Dynamic Libraries
Version: 1.0.9
Date: 2021-04-21
Authors@R: c(person("Paavo","Jumppanen",role=c("aut","cre"),email="paavo.jumppanen@csiro.au"))
Maintainer: Paavo Jumppanen <paavo.jumppanen@csiro.au>
Author: Paavo Jumppanen [aut, cre]
Copyright: CSIRO Marine and Atmospheric Research
Description: A build system based on 'GNU make' that creates and
maintains (simply) make files in an R session and provides
GUI debugging support through 'Microsoft Visual Code'.
License: GPL-2
URL: https://github.com/pjumppanen/BuildSys
BugReports: https://github.com/pjumppanen/BuildSys/issues
Imports: methods, digest
SystemRequirements: 'Microsoft Visual Code', 'Rtools' on 'Windows',
'gdb' or 'lldb' depending on which OS
NeedsCompilation: no
Packaged: 2021-04-30 06:10:49 UTC; paavo
Repository: CRAN
Date/Publication: 2021-04-30 13:20:02 UTC
20 changes: 20 additions & 0 deletions MD5
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
bf2aacf1645afe38a8d291a188f6e6ec *DESCRIPTION
5d02bcba3941762535ad5557da2b504b *NAMESPACE
bcb5fd57a9900a853eaf1e504fd93711 *R/BuildSys.R
ce7498da2eac6ab33616ca30536c8d4a *build/partial.rdb
866570617ff7b0bf292d562c43f0bb09 *man/BSysProject-class.Rd
0ac7774bcd798f8003cab804a867c002 *man/BSysSourceFile-class.Rd
3593728f46f74adb2deff9f8ba09c46d *man/BuildSys-package.Rd
7f602668f61916ad4ebb6e448d6a3c75 *man/buildMakefile.Rd
6050e88bbe1e3aceb47643089106ab6d *man/clean.Rd
a1c95218222e225e0a60b67fea8d9d1d *man/includePath.Rd
3819dc5fb8652f8e43d002fe609a780f *man/initProjectFromFolder.Rd
a13afc542b754a9914d60de4319794ff *man/installIncludePath.Rd
000e678c5a1b55f59f9b9d50a2592e78 *man/installLibraryPath.Rd
0b9847bf7b6026c55ab254d760eef0c0 *man/libraryPath.Rd
6639a5d676580cb180605fcb90819c19 *man/loadLibrary.Rd
addaa225dfffcb0522c6c301db81be87 *man/make.Rd
9d577670c2c48868fdc8d4846f35358f *man/objPath.Rd
8f9c028a33c42ebfed67ab78a149a59c *man/sourcePath.Rd
9ce0b55d45f93a6172d53e41ac3f7287 *man/unloadLibrary.Rd
007e1f5a72cdc59b488d965296a90709 *man/vcDebug.Rd
18 changes: 18 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
importFrom("digest", "digest")
importFrom("methods", "is", "new")
import("utils")
export("initProjectFromFolder",
"buildMakefile",
"make",
"libraryPath",
"sourcePath",
"includePath",
"objPath",
"installLibraryPath",
"installIncludePath",
"loadLibrary",
"unloadLibrary",
"vcDebug",
"clean")
exportClasses("BSysSourceFile",
"BSysProject")

0 comments on commit 33f51c7

Please sign in to comment.