일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- wxWidget
- c++ set struct
- 멀티바이트 문자 집합 사용
- winsock.h Broadcast
- esp-wroom-32d
- 사전설치
- Mqtt
- SQLite3
- OpenXLSX 한글
- 설치 테스트
- c++ Broadcast
- c2678
- __snprintf
- OpenCPN
- 확인할 수 없는 외부 기호
- LINK2001
- Flutter
- sts4
- __vsnprintf
- ExtendWith
- 정적 라이브러리에서 MFC 사용
- OpenCPN설치
- Console
- 의존주입
- _sprintf
- git 최초 설정
- Plugins
- git 대용량 파일
- .gitattributes
- MFC
- Today
- Total
목록분류 전체보기 (46)
세상을 이롭게

이미 앞에서 설치한 내용이다. 내려가면서 확인만 하자. https://opencpn.org/wiki/dokuwiki/doku.php?id=opencpn:developer_manual:developer_guide:compiling_windows Compiling on Windows [OpenCPN Manuals] Get the wxWidgets 3.1.2 sources and build them cd C:\Users\myname\Sources git clone -b v3.1.2 https://github.com/wxWidgets/wxWidgets cd wxWidgets git submodule init git submodule update cd build\msw nmake /f makefile.vc BUI..

설치 환경 Windows 10 Pro 64-bit (10.0, Build 19043) Intel(R) Core(TM) i7-10700K CPU @ 3.80GHz (16 CPUs), ~3.8GHz 65536MB RAM 과분하다... 설치 대상 WxWidget ver 3.1.2 C:\OpenCPN_SDK 폴더 생성 후 설치할 예정 어디에 설치하던지는 상관 없음 https://opencpn.org/wiki/dokuwiki/doku.php?id=opencpn:developer_manual:developer_guide:compiling_windows Compiling on Windows [OpenCPN Manuals] Get the wxWidgets 3.1.2 sources and build them cd C:\..

메뉴얼에 나와있는 대로 더 진행해보도록 하겠습니다. Getting and building OpenCPN source Get the OpenCPN sources In the open x86 Native Tools Command Prompt for VS 2017 execute the following commands: cd \Users\myname\Sources git clone https://github.com/OpenCPN/OpenCPN Get prebuilt Windows dependencies Download the dependencies bundle from OpenCPN_buildwin-4.99a.7z Extract into c:\Users\myname\Sources\OpenCPN\buildwin..

http://www.gisdeveloper.co.kr/?p=89 두 선의 교차점 구하기 – GIS Developer 이 글은 두 선분의 교차점을 구하는 알고리즘이 작업에 필요해서 작성해둔 글이다. 참고로, 예전에 두선분의 교차점을 구하는 것 자체가 쉬울 것으로 생각하고 흔히 생각하는 기울기, y 절편을 www.gisdeveloper.co.kr 퍼온 글입니다. 이 글은 두 선분의 교차점을 구하는 알고리즘이 작업에 필요해서 작성해둔 글이다. 참고로, 예전에 두선분의 교차점을 구하는 것 자체가 쉬울 것으로 생각하고 흔히 생각하는 기울기, y 절편을 이용하여 접근하려고 하였다. 이는 상당히 비효율적 방법이였고 조금 더 효율적인 방법으로 접근하였다. 먼저 직선의 방정식으로써, 기울기와 절편으로 나타내지 말고, t..
x86 기준이다. x64도 마찬가지이므로 따라하셔도 무방하다. #include "sqlite3.h" #include //string #include // std:: #define DATABASE "C:\\Users\\user\\Desktop\\sqlite_x86Test\\Test.db3" #define CREATETABLE_DATA "CREATE TABLE IF NOT EXISTS DATA (ID INTEGER PRIMARY KEY AUTOINCREMENT, TIME datetime);" #define INSERT_DATA "INSERT INTO DATA VALUES (NULL, @TIME);" #define SELECT_COUNT "SELECT COUNT(*) FROM DATA;" #define BUF..