Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions email.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
hyperdriveguy@gmail.com
6 changes: 5 additions & 1 deletion problem1/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
#Insert your code here :) (This is the way!)
#Insert your code here :) (This is the way!)
cmake_minimum_required(VERSION 3.20.0)
project(Perform)
include_directories(harp lib)
add_executable(perform main.c harp/harp.c lib/strings.c)
5 changes: 4 additions & 1 deletion problem2/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
#Insert your code here :)
#Insert your code here :)
cmake_minimum_required(VERSION 3.2.00)
project(Hello VERSION 0.1 LANGUAGES C)
add_subdirectory(include apps)
4 changes: 3 additions & 1 deletion problem2/apps/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
#Insert your code here :)
#Insert your code here :)
add_executable(hello main.c)
target_link_libraries(hello PRIVATE myActionLib)
7 changes: 6 additions & 1 deletion problem2/include/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
#Insert your code here :)
#Insert your code here :)
add_library(myActionLib SHARED action.c)
target_include_directories(myActionLib INTERFACE .)
add_library(myMessageLib SHARED message.c)
target_include_directories(myMessageLib PRIVATE .)
target_link_libraries(myActionLib PRIVATE myMessageLib)