File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -52,3 +52,6 @@ CMakeCache.txt
52
52
tests_tmp_dll /
53
53
tests_tmp_app /
54
54
* .aps
55
+
56
+ # Just because I like building into /bin...
57
+ /bin
Original file line number Diff line number Diff line change @@ -238,6 +238,8 @@ if(ASAR_GEN_EXE)
238
238
239
239
set_target_properties (asar-standalone PROPERTIES OUTPUT_NAME "asar" )
240
240
set_target_properties (asar-standalone PROPERTIES PDB_NAME "asar.exe" )
241
+
242
+ install (TARGETS asar-standalone)
241
243
endif (ASAR_GEN_EXE)
242
244
243
245
@@ -255,10 +257,13 @@ if(ASAR_GEN_DLL)
255
257
${ASAR_SHARED_SOURCE_FILES}
256
258
${ASAR_LIB_RESOURCE_FILES}
257
259
)
260
+
258
261
target_compile_definitions (asar PRIVATE "ASAR_SHARED" )
259
262
set_asar_shared_properties(asar "T" TRUE )
260
263
261
264
set_target_properties (asar PROPERTIES PDB_NAME "asar.dll" )
265
+
266
+ install (TARGETS asar)
262
267
endif (ASAR_GEN_DLL)
263
268
264
269
@@ -278,5 +283,7 @@ if (ASAR_GEN_LIB)
278
283
target_compile_definitions (asar-static PRIVATE "ASAR_STATIC" )
279
284
set_asar_shared_properties(asar-static "D" FALSE )
280
285
286
+ install (TARGETS asar-static )
287
+
281
288
# there's no need to set the PDB name since static libraries don't produce PDBs
282
289
endif ()
You can’t perform that action at this time.
0 commit comments