上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 30 下一页
摘要: ############################################################################## # VIM CHEATSHEET (中文速查表) - by skywind (created on 2017/10/12) # Version 阅读全文
posted @ 2020-12-28 21:09 fndefbwefsowpvqfx 阅读(96) 评论(0) 推荐(0) 编辑
摘要: \begin{compactitem} \item a \item b \end{compactitem} \begin{compactenum}[(1)] \item functions \item \begin{compactenum}[(i)] \item functions \item fu 阅读全文
posted @ 2020-12-28 11:33 fndefbwefsowpvqfx 阅读(169) 评论(0) 推荐(0) 编辑
摘要: The styles are categorized into family, series, and shape. The typestyle in the output is composed of these three characteristics. The table for the s 阅读全文
posted @ 2020-12-27 13:21 fndefbwefsowpvqfx 阅读(90) 评论(0) 推荐(0) 编辑
摘要: \begin{mdframed}[backgroundcolor=yellow!10, rightline=false] \lstinputlisting[language=C,mathescape,frame={}]{./temp.c} \end{mdframed} \lstinputlistin 阅读全文
posted @ 2020-12-24 21:04 fndefbwefsowpvqfx 阅读(83) 评论(0) 推荐(0) 编辑
摘要: standard font size command 10pt 11pt 12pt \tiny 5pt 6pt 6pt \scriptsize 7pt 8pt 8pt \footnotesize 8pt 9pt 10pt \small 9pt 10pt 11pt \normalsize 10pt 1 阅读全文
posted @ 2020-12-24 16:11 fndefbwefsowpvqfx 阅读(85) 评论(0) 推荐(0) 编辑
摘要: Lists List are basic elements in a document, when used correctly they keep concepts organized and structured. This article explains how to create and 阅读全文
posted @ 2020-12-24 14:31 fndefbwefsowpvqfx 阅读(106) 评论(0) 推荐(0) 编辑
摘要: CMakeLists.txt cmake_minimum_required(VERSION 3.15) project(Test) enable_language(ASM_NASM) set(CMAKE_C_STANDARD 99) set(ASM_SOURCES test.asm ) set (S 阅读全文
posted @ 2020-12-24 13:42 fndefbwefsowpvqfx 阅读(93) 评论(0) 推荐(0) 编辑
摘要: function(addPrefix) set(result ) set(prefix ${ARGV1}) set(lastIndex ) math(EXPR lastIndex "${ARGC}-1") set(item ) set(changed ) foreach(i RANGE 2 ${la 阅读全文
posted @ 2020-12-23 09:59 fndefbwefsowpvqfx 阅读(88) 评论(0) 推荐(0) 编辑
摘要: depName platform win mac linux android ios arch armeabi armeabi-v7a arm64-v8a mips mips64 x86 x86_64 version link static dynamic debug or release othe 阅读全文
posted @ 2020-12-23 09:57 fndefbwefsowpvqfx 阅读(87) 评论(0) 推荐(0) 编辑
摘要: https://docs.microsoft.com/en-us/cpp/build/reference/md-mt-ld-use-run-time-library For more information about C run-time libraries and which libraries 阅读全文
posted @ 2020-12-23 09:42 fndefbwefsowpvqfx 阅读(186) 评论(0) 推荐(0) 编辑
摘要: CMAKE_BINARY_DIR ${CMAKE_BINARY_DIR} CMAKE_SOURCE_DIR ${CMAKE_SOURCE_DIR} CMAKE_CURRENT_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR} CMAKE_CURRENT_SOURCE_DI 阅读全文
posted @ 2020-12-23 09:33 fndefbwefsowpvqfx 阅读(159) 评论(0) 推荐(0) 编辑
摘要: macro(getDirRelative result curdir) set(result ) set(dirlist ) file(GLOB children RELATIVE ${curdir} ${curdir}/*) foreach(child ${children}) if(IS_DIR 阅读全文
posted @ 2020-12-23 09:31 fndefbwefsowpvqfx 阅读(74) 评论(0) 推荐(0) 编辑
摘要: #查看lib中的obj lib /list path/to/your.lib #根据上步得到obj名字,抽出obj lib path/to/yout.lib /extract:foo/a.obj /out:out/path/outname.obj #查看obj中的symbol dumpbin /sy 阅读全文
posted @ 2020-12-22 17:05 fndefbwefsowpvqfx 阅读(74) 评论(0) 推荐(0) 编辑
摘要: cmake -S . -B build -G "Visual Studio 16 2019" start ./pname.sln 阅读全文
posted @ 2020-12-22 11:21 fndefbwefsowpvqfx 阅读(82) 评论(0) 推荐(0) 编辑
摘要: https://github.com/sindresorhus/awesome-nodejs Contents Packages Mad science Command-line apps Functional programming HTTP Debugging / Profiling Loggi 阅读全文
posted @ 2020-12-18 17:20 fndefbwefsowpvqfx 阅读(171) 评论(0) 推荐(0) 编辑
摘要: linux good! https://developer.aliyun.com/mirror/cygwin https://cygwin.com http://mirrors.aliyun.com/cygwin/ 阅读全文
posted @ 2020-12-18 14:01 fndefbwefsowpvqfx 阅读(59) 评论(0) 推荐(0) 编辑
摘要: linux 使用 ldd 查看程序依赖的动态库 $ ldd /usr/bin/bash linux-vdso.so.1 (0x00007ffdd2749000) libtinfo.so.6 => /lib/x86_64-linux-gnu/libtinfo.so.6 (0x00007fcecb9b6 阅读全文
posted @ 2020-12-18 13:44 fndefbwefsowpvqfx 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 使用execute_process 下载依赖包,配置环境等,各种操作。 参数必须要传,不用也要传空 set(getdep1 ${CMAKE_SOURCE_DIR}/clone.sh) execute_process( COMMAND ${getdep1} "" WORKING_DIRECTORY $ 阅读全文
posted @ 2020-12-18 11:27 fndefbwefsowpvqfx 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 查看版本信息,以确定支持的特性 CLI 查看 打开 vs console,输入 cl ********************************************************************** ** Visual Studio 2022 Developer Comm 阅读全文
posted @ 2020-12-18 10:34 fndefbwefsowpvqfx 阅读(132) 评论(0) 推荐(0) 编辑
摘要: https://cmake.org/cmake/help/latest/command/cmake_host_system_information.html Query host system specific information. cmake_host_system_information(R 阅读全文
posted @ 2020-12-15 14:28 fndefbwefsowpvqfx 阅读(157) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 30 下一页