-
Notifications
You must be signed in to change notification settings - Fork 147
Open
Description
How do I setup a separate project that works with node.native (from git, not from install library locations)?
Here is what I have tried:
git clone https://github.com/d5/node.native.git
mkdir routing_tests && cd $_
Then I created main.cpp and CMakeLists.txt:
project(routing_tests)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
cmake_minimum_required(VERSION 2.8)
aux_source_directory(. SRC_LIST)
add_executable(${PROJECT_NAME} ${SRC_LIST})
include_directories(../node.native/ ../node.native/native)
include_directories(../node.native/libuv ../node.native/libuv/include ../node.native/http-parser)
But unfortunately I get these errors: Qt Creator screenshot
How do I fix this? - Also, are you planning on moving from vanilla Makefiles to CMake?
Metadata
Metadata
Assignees
Labels
No labels