# HG changeset patch # User František Kučera # Date 1537789050 -7200 # Node ID ba16fce7ef20ecf493320b752fe7da5b0f7117cd create cmake+netbeans project diff -r 000000000000 -r ba16fce7ef20 .hgignore --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.hgignore Mon Sep 24 13:37:30 2018 +0200 @@ -0,0 +1,14 @@ +syntax: glob + +*~ + +syntax: regexp + +^temp/ + +^\.dep\.inc +^dist/ +^build/ +^nbproject/private/ + +^.*\.qtcreator\.(config|creator|files|includes) diff -r 000000000000 -r ba16fce7ef20 CMakeLists.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/CMakeLists.txt Mon Sep 24 13:37:30 2018 +0200 @@ -0,0 +1,3 @@ +project (HelloCMake) +cmake_minimum_required(VERSION 2.8) +add_subdirectory (src) diff -r 000000000000 -r ba16fce7ef20 nbproject/configurations.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/nbproject/configurations.xml Mon Sep 24 13:37:30 2018 +0200 @@ -0,0 +1,132 @@ + + + + + + + relpipe-out-chart.cpp + + + + CMakeLists.txt + build/Debug/Makefile + build/Release/Makefile + + + ^(nbproject|build)$ + + . + + build/Debug/Makefile + + + + default + false + false + + + + + + + + + build/Debug + ${MAKE} -f Makefile + ${MAKE} -f Makefile clean + build/Debug/src/relpipe-out-chart + + + src + build/Debug/src + + + + + build/Debug + ${CMAKE} -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug -DCMAKE_C_COMPILER=${IDE_CC} -DCMAKE_CXX_COMPILER=${IDE_CXX} -DCMAKE_EXPORT_COMPILE_COMMANDS=ON ../.. + true + + + + + + + + + + default + false + false + + + + + + build/Release + ${MAKE} -f Makefile + ${MAKE} -f Makefile clean + build/Release/src/welcome + + + src + + + NDEBUG + + + + + build/Release + ${CMAKE} -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=${IDE_CC} -DCMAKE_CXX_COMPILER=${IDE_CXX} -DCMAKE_EXPORT_COMPILE_COMMANDS=ON ../.. + true + + + + + + + diff -r 000000000000 -r ba16fce7ef20 nbproject/project.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/nbproject/project.xml Mon Sep 24 13:37:30 2018 +0200 @@ -0,0 +1,72 @@ + + + + org.netbeans.modules.cnd.makeproject + + + relpipe-out-chart.qt.cpp + + cpp + + UTF-8 + + . + + + + . + + + + Debug + 0 + + + Release + 0 + + + + false + + + + diff -r 000000000000 -r ba16fce7ef20 src/CMakeLists.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/CMakeLists.txt Mon Sep 24 13:37:30 2018 +0200 @@ -0,0 +1,1 @@ +add_executable (relpipe-out-chart relpipe-out-chart.cpp) diff -r 000000000000 -r ba16fce7ef20 src/relpipe-out-chart.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/relpipe-out-chart.cpp Mon Sep 24 13:37:30 2018 +0200 @@ -0,0 +1,6 @@ +#include + +int main(int argc, char**argv) { + std::cout << "TODO: relpipe-out-chart..." << std::endl; + return 0; +}