Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports-kde
Path: blob/main/cad/gdscpp/files/patch-CMakeLists.txt
16462 views
1
--- CMakeLists.txt.orig 2020-06-11 07:02:00 UTC
2
+++ CMakeLists.txt
3
@@ -14,8 +14,17 @@ set(SOURCES
4
)
5
6
add_executable(${PROJECT_NAME} ${SOURCES})
7
+add_library(gds
8
+ src/gdsCpp.cpp
9
+ src/gdsParser.cpp
10
+ src/gdsForge.cpp
11
+ src/gdsImport.cpp
12
+)
13
14
# Ensures that the header files of the project is included
15
target_include_directories(${PROJECT_NAME} PRIVATE
16
+ ${PROJECT_SOURCE_DIR}/include/gdscpp
17
+)
18
+target_include_directories(gds PRIVATE
19
${PROJECT_SOURCE_DIR}/include/gdscpp
20
-)
21
\ No newline at end of file
22
+)
23
24