Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
cfeaa39e8a
|
@ -4,3 +4,8 @@ cmake-build-debug
|
||||||
*~
|
*~
|
||||||
*.out
|
*.out
|
||||||
*.save
|
*.save
|
||||||
|
/bin
|
||||||
|
/CMakeFiles
|
||||||
|
CMakeCache.txt
|
||||||
|
cmake_install.cmake
|
||||||
|
Makefile
|
||||||
|
|
|
@ -3,6 +3,10 @@ project(C/C++)
|
||||||
|
|
||||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++14")
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++14")
|
||||||
|
|
||||||
|
# These are the corresponding output paths
|
||||||
|
set (EXECUTABLE_OUTPUT_PATH ${CMAKE_SOURCE_DIR}/bin)
|
||||||
|
set (LIBRARY_OUTPUT_PATH ${EXECUTABLE_OUTPUT_PATH})
|
||||||
|
|
||||||
add_executable(01_ENV_MP 01_ENV/MP/main.c 01_ENV/MP/func1.c)
|
add_executable(01_ENV_MP 01_ENV/MP/main.c 01_ENV/MP/func1.c)
|
||||||
target_link_libraries(01_ENV_MP m)
|
target_link_libraries(01_ENV_MP m)
|
||||||
add_executable(01_ENV_Testat 01_ENV/Testat/main.c 01_ENV/Testat/func1.c)
|
add_executable(01_ENV_Testat 01_ENV/Testat/main.c 01_ENV/Testat/func1.c)
|
||||||
|
|
Loading…
Reference in New Issue