text
stringlengths
0
834k
PPM version 4 is a complete rewrite. The main changes since PPM version 3 are:
=over
=item *
The command line shell has been replaced with a graphical user interface.
=item *
Support for *.ppmx files (since PPM version 4.3)
=item *
PPM can now manage different installation areas.
=item *
No more 'precious' packages. PPM can upgrade itself as well other
bundled and core modules.
=item *
Installation of packages and their dependencies happen as atomic
transactions.
=item *
PPM tracks what files it has installed and can notice if files have been
modified or deleted. The command 'ppm verify' will report on
mismatches.
=item *
State is kept in local SQLite databases. All repository state is kept
local which makes searching much faster.
=item *
PPM will pick up and manage packages installed by other means (e.g.
manually or with the CPAN shell).
=item *
No more SOAP.
=item *
Underlying modules moved to the C<ActivePerl::PPM::> namespace.
=back
=head1 SEE ALSO
L<ActivePerl>
L<http://search.cpan.org/dist/PPM-Repositories/>
=head1 COPYRIGHT
Copyright (C) 2012 ActiveState Software Inc. All rights reserved.
=cut
__END__
:endofperl
",27.5968586387,186,0.5978337731
220020,f33cefd444d4bd3250ed8c2203bbd67630fbdb30,1886,bat,Batchfile,misc/build_vscode.bat,StafaH/cpp-event-systems,8cdbbce763740d38df81bc0b7fe3087fab742004,['MIT'],3.0,2019-08-01T11:15:49.000Z,2021-05-23T18:33:55.000Z,misc/build_vscode.bat,StafaH/cpp-event-systems,8cdbbce763740d38df81bc0b7fe3087fab742004,['MIT'],,,,misc/build_vscode.bat,StafaH/cpp-event-systems,8cdbbce763740d38df81bc0b7fe3087fab742004,['MIT'],2.0,2020-04-01T08:27:27.000Z,2021-02-08T03:47:20.000Z,"@echo off
:: This batch file requires a developer command prompt as shown shell_vscode.bat
:: Compiling is substantially faster if you open your editor using the developer cmd instead of calling vcvarsall.bat
:: %~dp0 Cool way of getting the d = drive and p = path name of the current batch file.
set BuildDir=%~dp0..\build
if not exist %BuildDir% mkdir %BuildDir%
pushd %BuildDir%
:: delete pdb file and get rid of output errors
:: del *.pdb > NUL 2> NUL
:: compiler flags:
:: /Zi enable debugging information
:: /FC use full path in diagnostics
:: /I look for other include directories
:: /W# Warnings
:: /MD Which runtime library to use (Static/Dynamic)
set CommonCompilerFlags=/O2 /nologo -fp:fast -fp:except- -Gm- -GR- /MP /Zi /FC /EHsc /I""..\deps\include"" /W1 /MD
set CommonCompilerFlags= /std:c++latest -DIMGUI_IMPL_OPENGL_LOADER_GLEW %CommonCompilerFlags%
:: libs ws2_32.lib iphlpapi, ws2_32, netapi32 and wsock32 are needed for dcmtk (as well as others)
:: The order of compilation is also important for dcmtk
set CommonLinkerFlags=/OPT:REF user32.lib gdi32.lib winmm.lib opengl32.lib kernel32.lib shell32.lib glu32.lib winspool.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib netapi32.lib wsock32.lib ws2_32.Lib iphlpapi.lib
set GLFWLibPath=/LIBPATH:..\deps\lib\GLFW\lib-vc2017 glfw3.lib
set GLEWLibPath=/LIBPATH:..\deps\lib\GLEW glew32s.lib glew32.lib
set dcmtkPath=/LIBPATH:..\deps\lib\dcmtk ofstd.lib oflog.lib dcmdata.lib dcmimgle.lib
:: Code and libraries directory path
set CodePath=..\code\*.cpp