This allow compile check event for CONNECT and use EVENT as CONNECT target, also raise event now is simple execute EVENT function.
7 lines
228 B
CMake
7 lines
228 B
CMake
cmake_minimum_required(VERSION 2.6)
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR} . ../)
|
|
file(GLOB CPPS "*.cpp")
|
|
add_definitions(-Wall -O2)
|
|
add_executable(pip_sys_test "main.cpp")
|
|
target_link_libraries(pip_sys_test pip)
|