• R/O
  • SSH

posixpp: コミット

The main posixpp library and associated tests.


コミットメタ情報

リビジョンeb5208a2a6b23b21068ab84b2c74616dbd22d2db (tree)
日時2019-05-21 19:10:33
作者Eric Hopper <hopper@omni...>
コミッターEric Hopper

ログメッセージ

Initial checkin.

変更サマリ

差分

diff -r 000000000000 -r eb5208a2a6b2 .hgignore
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/.hgignore Tue May 21 03:10:33 2019 -0700
@@ -0,0 +1,5 @@
1+syntax: re
2+^build$
3+
4+syntax: glob
5+*~
diff -r 000000000000 -r eb5208a2a6b2 CMakeLists.txt
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/CMakeLists.txt Tue May 21 03:10:33 2019 -0700
@@ -0,0 +1,14 @@
1+cmake_minimum_required (VERSION 3.12)
2+
3+project (posixpp VERSION 0.1.0.0 LANGUAGES CXX)
4+
5+option(BUILD_SHARED_LIBS "Build libNet as a shared library." ON)
6+
7+add_library(posixpp empty.cpp)
8+set_property(TARGET posixpp PROPERTY CXX_EXTENSIONS OFF)
9+target_compile_features(posixpp PUBLIC cxx_std_17)
10+
11+target_include_directories(
12+ posixpp PUBLIC
13+ "$<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}>"
14+ )
旧リポジトリブラウザで表示