Comparing version 0.9.1 to 0.9.2
@@ -116,3 +116,3 @@ # This is the CMakeCache file. | ||
//Install path prefix, prepended onto install directories. | ||
CMAKE_INSTALL_PREFIX:PATH=C:/Program Files/Luigi | ||
CMAKE_INSTALL_PREFIX:PATH=C:/Program Files/koffi | ||
@@ -240,11 +240,2 @@ //No help, variable specified on the command line. | ||
//Value Computed by CMake | ||
Luigi_BINARY_DIR:STATIC=C:/Users/Niels/Code/luigi/koffi/build | ||
//Value Computed by CMake | ||
Luigi_IS_TOP_LEVEL:STATIC=ON | ||
//Value Computed by CMake | ||
Luigi_SOURCE_DIR:STATIC=C:/Users/Niels/Code/luigi/koffi | ||
//No help, variable specified on the command line. | ||
@@ -259,5 +250,2 @@ NODE_ARCH:UNINITIALIZED=x64 | ||
//Dependencies for the target | ||
Raylib_LIB_DEPENDS:STATIC=general;winmm; | ||
//Value Computed by CMake | ||
@@ -264,0 +252,0 @@ koffi_BINARY_DIR:STATIC=C:/Users/Niels/Code/luigi/koffi/build |
C:/Users/Niels/Code/luigi/koffi/build/CMakeFiles/koffi.dir | ||
C:/Users/Niels/Code/luigi/koffi/build/CMakeFiles/Raylib.dir | ||
C:/Users/Niels/Code/luigi/koffi/build/CMakeFiles/ALL_BUILD.dir | ||
C:/Users/Niels/Code/luigi/koffi/build/CMakeFiles/ZERO_CHECK.dir |
@@ -22,5 +22,2 @@ # This program is free software: you can redistribute it and/or modify | ||
# Koffi | ||
# ---------------------- | ||
set(KOFFI_SRC | ||
@@ -33,3 +30,3 @@ src/call_arm64.cc | ||
src/util.cc | ||
../vendor/libcc/libcc.cc | ||
vendor/libcc/libcc.cc | ||
) | ||
@@ -54,3 +51,3 @@ if(CMAKE_SIZEOF_VOID_P EQUAL 8) | ||
set_target_properties(koffi PROPERTIES PREFIX "" SUFFIX ".node") | ||
target_include_directories(koffi PRIVATE .. ${CMAKE_JS_INC} ../vendor/node-addon-api) | ||
target_include_directories(koffi PRIVATE . ${CMAKE_JS_INC} vendor/node-addon-api) | ||
target_link_libraries(koffi PRIVATE ${CMAKE_JS_LIB}) | ||
@@ -67,32 +64,1 @@ | ||
endif() | ||
# Raylib | ||
# ---------------------- | ||
add_library(Raylib SHARED | ||
../vendor/raylib/src/rcore.c | ||
../vendor/raylib/src/rshapes.c | ||
../vendor/raylib/src/rtextures.c | ||
../vendor/raylib/src/rtext.c | ||
../vendor/raylib/src/rmodels.c | ||
../vendor/raylib/src/utils.c | ||
../vendor/raylib/src/rglfw.c | ||
../vendor/raylib/src/raudio.c | ||
) | ||
set_target_properties(Raylib PROPERTIES PREFIX "") | ||
target_include_directories(Raylib PRIVATE ${CMAKE_JS_INC} ../vendor/raylib/src/external/glfw/include) | ||
target_compile_definitions(Raylib PRIVATE PLATFORM_DESKTOP GRAPHICS_API_OPENGL_21 | ||
BUILD_LIBTYPE_SHARED NDEBUG) | ||
if(WIN32) | ||
target_compile_definitions(Raylib PRIVATE _CRT_SECURE_NO_WARNINGS _CRT_NONSTDC_NO_DEPRECATE) | ||
target_link_libraries(Raylib PRIVATE winmm) | ||
endif() | ||
if(MSVC) | ||
target_compile_options(Raylib PRIVATE /wd4244 /wd4305) | ||
else() | ||
target_compile_options(Raylib PRIVATE -Wno-sign-compare -Wno-old-style-declaration | ||
-Wno-unused-function -Wno-missing-field-initializers | ||
-Wno-unused-value -Wno-implicit-fallthrough -Wno-stringop-overflow | ||
-Wno-unused-result) | ||
endif() |
{ | ||
"name": "koffi", | ||
"version": "0.9.1", | ||
"version": "0.9.2", | ||
"description": "Fast and simple FFI (foreign function interface) for Node.js", | ||
@@ -5,0 +5,0 @@ "repository": { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Native code
Supply chain riskContains native code (e.g., compiled binaries or shared libraries). Including native code can obscure malicious behavior.
Found 3 instances in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Shell access
Supply chain riskThis module accesses the system shell. Accessing the system shell increases the risk of executing arbitrary code.
Found 1 instance in 1 package
Uses eval
Supply chain riskPackage uses dynamic code execution (e.g., eval()), which is a dangerous practice. This can prevent the code from running in certain environments and increases the risk that the code may contain exploits or malicious behavior.
Found 1 instance in 1 package
Debug access
Supply chain riskUses debug, reflection and dynamic code execution features.
Found 1 instance in 1 package
Dynamic require
Supply chain riskDynamic require can indicate the package is performing dangerous or unsafe dynamic code execution.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 4 instances in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 2 instances in 1 package
Mixed license
License(Experimental) Package contains multiple licenses.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Empty package
Supply chain riskPackage does not contain any code. It may be removed, is name squatting, or the result of a faulty package publish.
Found 1 instance in 1 package
Native code
Supply chain riskContains native code (e.g., compiled binaries or shared libraries). Including native code can obscure malicious behavior.
Found 11 instances in 1 package
8450845
429
4577
3
37
37