# asl **Repository Path**: caiwang213/asl ## Basic Information - **Project Name**: asl - **Description**: 基于模板元编程技术的跨平台C++动态链接加载库。通过模板技术,使用者仅需通过简单的宏,即可使编译器在编译期自动生成加载动态链接库导出符号的代码,无任何额外的运行时开销。 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-01-07 - **Last Updated**: 2022-07-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## CMake (Windows) Install CMake: MSVC Win32 Debug $ md build && cd build $ cmake -DCMAKE_INSTALL_PREFIX=./install -DCMAKE_DEBUG_POSTFIX="_d" -G "Visual Studio 12" .. $ msbuild INSTALL.vcxproj /t:Build /p:Configuration=Debug MSVC Win64 Release $ md build && cd build $ cmake -DCMAKE_INSTALL_PREFIX=./install -G "Visual Studio 12 Win64" .. $ msbuild INSTALL.vcxproj /t:Build /p:Configuration=Release ## CMake (Unix) $ mkdir build && cd build $ cmake -DCMAKE_INSTALL_PREFIX=$PWD/install -DCMAKE_BUILD_TYPE=Debug -DCMAKE_DEBUG_POSTFIX="_d" .. # Default to Unix Makefiles. $ make $ make install ## CMake (Android) $ mkdir build && cd build $ cmake \ -DCMAKE_INSTALL_PREFIX=$PWD/install \ -DCMAKE_BUILD_TYPE=Debug \ -DCMAKE_DEBUG_POSTFIX="_d" \ -DCMAKE_TOOLCHAIN_FILE=android.toolchain.cmake \ -G "Unix Makefiles" .. $ make $ make install